Link a word to the same word on another page

liunx

Guest
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<!--content-->there are different ways you can achieve something like this,<br />
one is to create a page for sail,somethng like <br />
<br />
<a href=http://www.webdeveloper.com/forum/archive/index.php/"sail.html>Sail</a><br />
<br />
or if you have one pag with allots owrds decription then you can use something like this.<br />
On the descriptions page give name to each word<br />
<br />
<a name="sail">Sail</a><br />
<br />
and then have a linksomething like this<br />
<br />
<a href=http://www.webdeveloper.com/forum/archive/index.php/"meanings_page.html#sail">Sail</a><!--content-->For example:<br />
<br />
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 = <!-- m --><a class="postlink" href="http://www.webdeveloper.com/forum/archive/index.php/">http://www.webdeveloper.com/forum/archive/index.php/</a><!-- m -->"#destination"><br />
<br />
To link to a certain position on a different page: <a href=http://www.webdeveloper.com/forum/archive/index.php/"destinationpage.html#destination"><br />
where you can replace "destinationpage.html" with the name of your page, and #destination with whatever identification you want to give to that section<!--content-->
 
Back
Top