So A huge classic is tu put a link on image. The old fashioned way is to do something like
<a href="wtv">
<img src="wvt">
</a>
Since the introduction of <map>
we can do something like this :
<map name="exemple-map-1">
<area shape="rect" coords="0,0 100%,100%" href="https://developer.mozilla.org" target="_blank" />
</map>
<img usemap="#exemple-map-1" src="https://mdn.mozillademos.org/files/14546/map.png">
But is this good practice?