Tuesday 17 July 2012

How to Make a hyperlink of an image using html


<!DOCTYPE html>
<html>
<body>

<p>Create a link of an image:
<a href="url here">
<img src="smiley.gif" alt="HTML tutorial" width="32" height="32" />
</a></p>

<p>No border around the image, but still a link:
<a href="url here">
<img border="0" src="smiley.gif" alt="HTML tutorial" width="32" height="32" />
</a></p>

</body>
</html>

0 Responses to “How to Make a hyperlink of an image using html”

Post a Comment