+ 1
Link
How to insert link in an image? What could be the code for that?
1 Answer
+ 5
put the img element inside an anchor tag:
<a href='link/to/some/place'>
<img src='my_image.jpg'>
</a>
How to insert link in an image? What could be the code for that?