use this: <A HREF="page2.html">page 2</A>
that should link
page 2 to open a new page for you (page2.html)
what you are doing is putting a link to the same page (forgot the "term")
basically, what this means:
<A HREF="#myTarget">jump to another place</A>
means that you are looking for this tag:
<A NAME="myTarget">
in your index.html page
with the
# sign, the link inside <A HREF> becomes "internal link", which means that the link will take you to where "myTarget" is specified in that page. if you don't have an anchor with name "myTarget", it will just jump to somewhere on the page and you got the URL as "index.html#myTarget"
i have left out some details, but that should get you moving ... if you need more info, drop me a pm or sth
good luck
-979-