Anchor (Add Link with in a Page)
24/06/2009 15:37To link to a location on the same page, you need two anchor tags.
Hyperlink Reference <a href=></a>
Name Tag <a name=></a>
This configuration is used for the common Back to Top link on HTML pages.
<a href="#destination_name">Destination</a>
<a name="destination_name"></a>
Designate Location on Another Page
The name tag can also be used to go to a designated location on another page. The name tag would be placed on the page at the desired location.
To link to that page and location the code would be:
<a href="samesite.htm#destination_name">Another Page</a>
———
Back