Log in

View Full Version : Adding anchor tags


cousinjack
Oct 29, 2008, 07:10 AM
Hello
I am having trouble adding an anchor tag
I want to add an anchor tag from a word (read)on page one that takes you to page two.

I then want to link from a, back button, on page two, back to the word (read) on page one.

It is driving me crazy. I am using Dreamweaver MX
Any help would be appreciated.

CousinJack

Artem
Jan 17, 2009, 02:41 AM
<a href="pagetwo.html">(read)</a>

and

<a href="pageone.html">Back</a>

You mean like that?
If you want to move to the exact part of a website then use <a name="">
Like this:

<a name="one"><a href="><a href=">(read)</a></a>

and

<a href="pageone.html#one">Back</a>

Hope that helps.