Quick and Dirty Tutorial on Anchors:
<a name="section1"></a>
Placing the above code at the beginning of section 1 of your document will create an anchor to that exact spot.
<a href="#section1">Go To Section 1</a>
This code points to the anchor you just made. Notice the
# symbol, that's a must.
So, let's say you wanted to create a table of contents for your page. You would do something like this:
Table of Contents:
<a href="#section1">Section 1</a>
<a href="#section2">Section 2</a>
<a href="#section3">Section 3</a>
<a name="section1"></a>Welcome To Section 1!
...
...
...
<a name="section2"></a>Welcome To Section 2!
...
...
...
<a name="section3"></a>Welcome To Section 3!
It's really easy once you nail it down.
This post has been edited by Amazing Andrew: 12 March 2008 - 03:06 PM