Anchor TagsAnchor tags allow you to create links, either to an external document or within the same document. Since the web is, well, a web of documents it is important that pages link to other pages, making the anchor tags very important to use in your web designing. An anchor begins with <a> and ends with </a>. Between the two will be linked. The link itself is determined using the href attribute inside the opening tag. As a simple example, if you wanted to create a link to ProPhotoForum with the text 'ProPhotoForum' being the link you'd use the following code. <a href="http://www.prophotoforum.com">ProPhotoForum</a> This would look like this: ProPhotoForum Notice that the href is equal to whatever web site you'd like to link to. If you're linking within your own site you can leave off the domain. So, to link to my glossary I can use the following code. <a href="/glossary">Glossary</a> This would create a link like Glossary Images <a href="http://www.etomite.org"><img src="/etomitelogo.jpg"></a> This would create the following link: Titles <a href="http://www.google.com" title="Google Search Engine">Google</a> With that code you'll see Google. Notice if you hover your mouse over the link you should see a tool tip 'Google Search Engine'. Frames & target |

