LINK MENU
Creating a link, is very easy. In
this section, we will be using just one command called
"<a href=" ">"
Here is an example of how to
insert a link to Danforth CTI's website
<a href="http://www.dcti.net">Danforth
CTI</a>
Note that I put "http://www.dcti.net" in the located <A href=" ">, this is
where
the location of the link will go after someone click on Danforth
CTI.
But what about
local file?
If you have local file(s) that you want to
link together, this is what you do
<a href="index2.html">The
Second Index</a>
Note: Your
filename will be different from mine. The "</a>" is to
close the link. Also,
make sure that your link file(s) is/are located on the same folder as your other
html files.
Linking with Pictures
Besides linking with text, you can also create a web page that when some-
one click on an image, it will go to
another location specify by you.
Here is how you would do it:
<a
href="index2.html"><img
src="test.gif"></a>
The blue denotes the link location
The red denotes the image
The black denotes the closing of the
link
End of Lesson
|