Click to See Complete Forum and Search --> : text link to paragraph


little_lisa
08-08-2003, 10:23 AM
I need to have a link from text catagories at the top of the page to each paragraph further down the page. How??

Thanx

Lisa

pyro
08-08-2003, 10:37 AM
You need to use anchors:

<a href="#one">Go to one</a>
<a href="#two">Go to two</a>
<p>a bunch of your content goes here...</p>
<a name="one"></a><p>This is where the first link will go to</p>
<a name="two"></a><p>This is where the second link will go to</p>

nkaisare
08-08-2003, 10:47 AM
The above method is a backward compatible method. I would recommend using it. However, a purist will recommend the following:
<a href="#one">Go to one</a> |
<a href="#two">Go to two</a>
<p>a bunch of your content goes here...</p>
<p id="one">This is where the first link will go to</p>
<p id="two">This is where the second link will go to</p>

(The | separating the two links is to improve accessibility of your page. Two links should be separated by a separator other than blank space, non-breaking space (&amp;nbsp;) or line feed (<br>). Hence the | to separate the two)