|
You can also link your page to other places in the same page. The most common use of this is a link that take people back up to the top of the page. To do this you need to insert an anchor tag in the place you want people to be sent TO, (for example to top of the page) using the tag:
<A NAME="destination">
where destination is the name of the place you want people to go. Then the link to send them there is put in the place you want people to be sent FROM, (for example the bottome of the page) using the tag:
<A HREF="#destination">Linking Text</A>
Please note that you must put the "#" character in front of your destination.
Thus, to take people back to the top of this page, I would put the tag:
<A NAME="top">
at the very top of the page (right after the <BODY> tag) and then I would use the tag:
<A HREF="#top">Return to Top</A>
which would have the following result (try it!);
Return to Top
You can put a named anchor anywhere and link to it from anywhere, even other pages.
|