How to create an image link in html

Would you prefer using an image as link allowing your visitors to click the image in order to get directed to a particular part of your website? In that specific case, just make sure you enclose the image by means of the known <a> element. Find an example below:

<a href="url">
<img src="image.jpg" />
</a>


Was this useful?