
How To Make an Image Hyperlink
To make an image into a click-able hyperlink, simply replace the hyperlink text with some HTML image code. Images can have a relative path (/images/sample-image.gif), or they can have an absolute path (http://hyperlinkcode.com/images/sample-image.gif)
HTML Image Hyperlink Code
Code
<a href="http://www.hyperlinkcode.com"><img src="http://hyperlinkcode.com/images/sample-image.gif"></a>
Output
Remove Border from the Image
Code
<a href="http://www.hyperlinkcode.com"><img src="/images/sample-image.gif" border="0"></a>
Output
More Hyperlink Codes