Click to See Complete Forum and Search --> : Link a word to the same word on another page


tabmow
11-10-2003, 07:16 AM
How do i link a word to another page with the word on that page? Lik the word Sail i click on sail and it takes to another page where Sail is with its meanin

Khalid Ali
11-10-2003, 07:23 AM
there are different ways you can achieve something like this,
one is to create a page for sail,somethng like

<a href="sail.html>Sail</a>

or if you have one pag with allots owrds decription then you can use something like this.
On the descriptions page give name to each word

<a name="sail">Sail</a>

and then have a linksomething like this

<a href="meanings_page.html#sail">Sail</a>

clairec666
11-10-2003, 07:25 AM
For example:

If the place you wanted to link to was on the same page, you would mark the target like this: <a name="destination"> and link to it using this: <a href = "#destination">

To link to a certain position on a different page: <a href="destinationpage.html#destination">
where you can replace "destinationpage.html" with the name of your page, and #destination with whatever identification you want to give to that section