<!DOCTYPE html>
<html>
<head>
<title>A link to a specific part of the page</title>
</head>
<body>
<h1>Using internal links</h1>
<p>This page covers the following topics:</p>
<ul>
<li><a href="#URL">URLs</a></li>
<li><a href="#SourceAnchors">Source Anchors</a></li>
<li><a href="#DestinationAnchors">Destination Anchors Using name or id</a></li>
<li><a href="#Examples">Examples</a></li>
</ul>
<a name="URL"></a>
<h2>URLs</h2>
<p>In addition to being able to create links to external resources (i.e. second page or resource),
the anchor tag allows you to create internal links within the same document.
This capability allows you to jump from one section of the document to another section within the same document.</p>
<p>This capability is great for creating a table of content at the beginning of the document,
and allowing the web client to click on each item the table of content to jump to the section that they
are interested in seeing.</p>
<p>To enable this capability, you must first identify the beginning of any section where
you want your web client to be able to jump within the current document. These sections are typically further
down within your large document.</p>
<p>To do this you must name each section by placing an anchor <a> tag with either a "name" or an "id" attribute
at the beginning of each section(s). </p>
<p><a href="#">Top</a></p>
<a id="SourceAnchors"></a>
<h2>Source Anchors</h2>
<p>In addition to being able to create links to external resources (i.e. second page or resource), the anchor tag allows you to create internal links within the same document. This capability allows you to jump from one section of the document to another section within the same document.</p>
<p>This capability is great for creating a table of content at the beginning of the document, and allowing the web client to click on each item the table of content to jump to the section that they are interested in seeing.</p>
<p>To enable this capability, you must first identify the beginning of any section where you want your web client to be able to jump within the current document. These sections are typically further down within your large document.</p>
<p>To do this you must name each section by placing an anchor <a> tag with either a "name" or an "id" attribute at the beginning of each section(s). </p>
<p><a href="#">Top</a></p>
<a name="DestinationAnchors"></a>
<h2>Destination Anchors</h2>
<p>In addition to being able to create links to external resources (i.e. second page or resource), the anchor tag allows you to create internal links within the same document. This capability allows you to jump from one section of the document to another section within the same document.</p>
<p>This capability is great for creating a table of content at the beginning of the document, and allowing the web client to click on each item the table of content to jump to the section that they are interested in seeing.</p>
<p>To enable this capability, you must first identify the beginning of any section where you want your web client to be able to jump within the current document. These sections are typically further down within your large document.</p>
<p>To do this you must name each section by placing an anchor <a> tag with either a "name" or an "id" attribute at the beginning of each section(s). </p>
<p><a href="#">Top</a></p>
<a name="Examples"></a>
<h2>Examples</h2>
<p>In addition to being able to create links to external resources (i.e. second page or resource), the anchor tag allows you to create internal links within the same document. This capability allows you to jump from one section of the document to another section within the same document.</p>
<p>This capability is great for creating a table of content at the beginning of the document, and allowing the web client to click on each item the table of content to jump to the section that they are interested in seeing.</p>
<p>To enable this capability, you must first identify the beginning of any section where you want your web client to be able to jump within the current document. These sections are typically further down within your large document.</p>
<p>To do this you must name each section by placing an anchor <a> tag with either a "name" or an "id" attribute at the beginning of each section(s). </p>
<p><a href="#">Top</a></p>
</body>
</html>