Links to Specific Sections
Anchors can also be used to move a reader to a particular section in a document - either the same or a different document.
This is called a named anchor, because to create the links you insert HTML names within the document.
Example of a link from document 1 to AustinStats.html:
Put the HTML coding for a link to a named anchor in document 1
<A href=“AustinStats.html#AIR”>New Airport</A>
Create the named anchor AIR in AustinStats.html
<H2><A NAME=“AIR”>New Airport</A></H2>
Links to specific sections within a document are the same, except the filename is omitted.