Click to See Complete Forum and Search --> : Help Please
I'm new to this and I want to have a,b,c.. etc at the top of a page, and when you click say C you will scroll down automatically to C. My page is quite long and this would be good.
Thanks for any reply.
gil davis
04-21-2003, 08:06 AM
<!DOCTYPE ...>
<html>
<head>
<title>Anchor Demonstration</title>
</head>
<body>
<center>
<a href="#A">A</a>&nbsp;
<a href="#B">B</a>&nbsp;
<a href="#C">C</a>&nbsp;
</center>
<!-- lots of good stuff -->
<a name="A"></a>This is where "A" goes
<!-- more lots of good stuff -->
<a name="B"></a>This is where "B" goes
<!-- more lots of good stuff -->
<a name="C"></a>This is where "C" goes
</body>
</html>
Great!
Thanks, just added to my page and it works fine.
Thanks Tel