Hypertext Links

To add functionality to your home page, you will want to create hypertext links (”click-able areas”) that your users can select to easily move to other locations, files and graphics.

There are three types of links: within the same document; to another document that resides in the same location as your main HTML document; and to an external site.

Let’s assume the following home page scenario (NOTE: links to external sources do not exist):

Topics Covered in My Home Page:

This is the Code

Back to Topics

And the HTML code that created the sample:

<A NAME=”topics”></A>TopicsCovered in My Home Page:<BR>
<UL>
<LI><A HREF=”#about”>Go to the Code</A><LI>
<LI><A HREF=”syllabus.html”>Home Page</A><LI>
<LI><A HREF=”members.html”>Other website</A><LI>
</UL>
<P><A NAME=”about”>This is the code</A></P>
<A HREF=”#topics”>Back to Topics</A>

© 2007 - 2008 tutorial.webaccessories