How can I create this link in HTML?

  • Thread starter Thread starter John
  • Start date Start date
J

John

Guest
Could someone please tell me how do I create a links that will lead me to different parts of the same page. If you click here http://www.ibiblio.org/eldritch/hsun/hsun.htm#Home
you'll understand. It's a collection of stories where the bibliography goes first, and when you click the name, the page points to the story. Thanks!
 
It's called an Anchor.

Give your target a name. I called it 'Here'.

Setup your hyperlink as follows:
<A HREF="#Here">

Insert this at the target spot.
<A NAME="Here">
 
Back
Top