Graphics as Links

By combining HTML tags,
a graphic can be used within a hypertext link. The code will look like
this
Normal
Link
<a
href="mypage.htm">Click-able Text</a>
Graphic
Substituted for click-able text
<a
href="mypage.htm"><img src="samplebutton.gif"
width="66" height="20" border="0"></a> |
The "border=0"
is used to prevent the link color from appearing around the image. If
the "border=0" code is removed, a blue or purple box (color
will be identical to the link color on your page) will appear around the
image.
 |
link
with border set to zero |
 |
link
without border code |

|