Tell us what’s happening:
Turn the image into a link by surrounding it with necessary element tags
CatPhotoApp
Cat Photos
See more cat photos in our gallery.

Tell us what’s happening:
Turn the image into a link by surrounding it with necessary element tags
See more cat photos in our gallery.
To convert a img element into a link you just need to wrap it within anchor tag.
<a href="link">
<img src="link">
</a>
This how you can do .
Hope you understand.