To create links to a link within the page, 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.