Links >> Create a Link >> Image Links
|
|
Image Links
If you want to make an image work as a link, the method is exactly the same as with texts.
You simply place the and the tags on each side of the image.
Below is the HTML code used to make the image work as a link to a page called myfile.htm:
<a href="myfile.htm"><img src="sample_image.wmf"></a>
If you haven't entered a border setting you will see a small border around the image after turning it into a link. To turn off this border, simply add border="0" to the <img> tag:
<a href="myfile.htm"><img src="sample_image.wmf" border="0"></a>
|
|
|
|