Link Within a Page
How To Link to a Specific Spot on a Page
The XHTML Compliant Way to Link Within a Page
Choose the exact spot you want to send your link to, choose and element near it (a div, header tag, paragraph.. whatever as long as it's in the right spot), add id="something", you can call them anything you like as long as the names are the same in the link and the target ID and preferably no spaces (spaces change to %20 in the address bar and look a tad messy).
<div id="whatever-you-want-to-call-it">The content of your div here.
</div>To link to your anchor simply use:
<a href="#whatever-you-want-to-call-it">Link Text Here</a><a href="pagename.html#whatever-you-want-to-call-it">Link Text Here</a>The Old Way
Choose a spot on the page you want to link to and make an anchor by making a link mostly as usual but instead of "href" add "name" inside it.
<a name="whatever-you-want-to-call-it">something here so you don't have an empty tag</a>This step is the same as above:
<a href="#whatever-you-want-to-call-it">Link Text Here</a>