The XHTML to make an image function as a hyperlink is very easy. To create an image
link all you need to do is surround your element with anchor tags. For example,
to place a link around an image called home.gif, use the following XHTML code:
When an image is used as a hyperlink, the default is to show a blue outline (border)
around the image. If you would prefer not to display this outline, you could use the
border="0" attribute in your image tag as follows:
A more modern approach is to use CSS to configure the border on the img selector. The
next Hands-