|

1)
Word Hyperlinks
You can make a
hyperlink from a graphic, or with words. Say you want to link your page with mine,
just by writing a word, with no picture, so that when you click on the word
"Roxydoll12," it takes you to my page.
ROXYDOLL12
Notice that if
you click the line above, it will take you to my page. This is how you write the HTML code
to do it:
<p
align="center"><a
href="http://www.roxydoll12.com/index.html">ROXYDOLL12>/a>
You can make a
hyperlink to any page on the web. Just substitute the address of the site you want
to link in the place of the Roxydoll12 address, and put in the name of the site you want
to be linked where "ROXYDOLL12" is in the example above in pink.
2)
Graphic Hyperlinks
Say you want to
make a hyperlink of a graphic, but with no words. Here is how you do it:

When you click
on the hula chick, it takes you back to my first page. You would write this one of two
ways, depending on whether you have uploaded the image into your own directory (Remember,
I told you how to upload images!!!)
If you are
making a hyperlink to my page, but you are NOT uploading the image into your directory,
the code you use looks like this:.
<p
align="center"><a href="http://www.roxydoll12.com/help/index.php"><img
src="http://www.roxydoll12.com/help/images/ashton.gif"
border="0"></a>
If
you have loaded the image into your own directory, you do the following:
<p
align="center"><a href="http://www.roxydoll12.com/help/index.php"><img
src="http://www.roxydoll12.com/help/images/ashton.gif" border="0"></a>
See the
portion of the code above in
pink? You would put in the name of your own directory, including the
name you gave the graphic. (Remember, the name I gave it was
"ashton.gif")
|