One of the really great things about HTML documents (ie Web pages) is that they are full of links (usually blue text) which allow you to jump from where you are to a completely different page, or even to a different web site.
Adding links is easy. The tag is: <A href = ".....">Some text goes here</A>
What you place inbetween the speech marks is the place you want to jump to. This can be another page on your site, or a completely different site. The only thing you need to remember is that for the link to work, the tag has to be given an actual, real place to go. This is usually in the form of a fully qualified URL (fancy abbreviation for a web page address).. eg:
Notice, there are 5 things to remember:
- The opening Anchor tag
- The HREF attribute
- The "destination" URL
- The text which the user must click on
- The closing Anchor tag.
If youŽd rather your users clicked on a graphic rather than on some text, you can acomplish this easily, like this:
|