How to make an image a link.
<a href="../html-link.htm"><img src="flower.jpg" width="82" height="86" title="White flower" alt="Flower"></a>
Or better use css styling to determine the width and height.
<a href="../html-link.htm"><img src="flower.jpg" style="width:82px; height:86px" title="White flower" alt="Flower"></a>
The code will create this link:
The code has the following parts: