Reference number: CH000049
How to create links to sections on the same page in HTML.
Issue:How to create links to sections on the same page in HTML.
Solution:To create links to a link within the page, currently two HTML tags need to be used.
<A HREF="#top">Top</a>
<A NAME="top">
The first tag <A HREF="#top">Top</a> is different in that it has
a # which represents a name statement. When the user clicks on Top, the computer would then
go to the name tag, if found.
The second tag <A NAME="top"> is where the first tag will reference
when clicked.
Example:
When clicking on the link below, the user would be linked to the top of the page.
Top
|