html image href code code example
Example 1: how to add a link in image
<a href="https://www.google.com/">
<img alt="Qries" src="https://lh3.googleusercontent.com/NGPrjka2ai0w7sfhxkxCwtOSh2wVyEZMdtrVxI4vrA22ebA_fcyl9PSvhTaCYXSWh0A68ZhvXhVZ4U-Nnp3v9IfoXg5o5H1tjjK97cs">
</a>
Example 2: html image with link
<a href="https://www.google.com">
<img src="./images/image.jpg" />
</a>
Example 3: html image with link
<a href="https://www.google.com"><img alt="Google" src="img.jpg"
style="max-width:960px"/></a>
Example 4: how to make an image link on html
<a href="your-hyper-link">
<img src="image.png" alt="HTML img link tutorial" style="width:42px;height:42px;border:0">
</a>