Hello there @jerrymiah. Welcome to the FCC Community.
All you need to do is wrap your <img> element around with an anchor tag <a href=""></a>
To wrap an HTML element with another you can follow this step:
<p> <a href="some-url"> a link in a paragraph </a>. </p>
In the example I gave you above, the link is wrapped by a paragraph and alternatively you can say the paragraph has a nested link because the link is inside of the paragraph.
Using this ideology you can now approach the challenge by wrapping your <img> with a <a href=""></a>. Do not forget to use the correct URL for your anchor tag.