Not enough context?

i feel like im either too stupid to figure this out or there just isnt enough context or examples provided to figure out what to do without asking either way i cant figure out what im doing wrong i tried to create a link out of the image using the same method i was taught to create a link out of the words in a previous module but its not working can anyone explain in MUCH better detail then what is provided in this please?

  **Your code so far**
<html>
<body>
  <h1>CatPhotoApp</h1>
  <main>
    <h2>Cat Photos</h2>
    <!-- TODO: Add link to cat photos -->
    <p>Click here to view more <a target="_blank" href="https://freecatphotoapp.com">cat photos</a>.</p>
    <img <a href='https://freecatphotoapp.com'>src="https://cdn.freecodecamp.org/curriculum/cat-photo-app/relaxing-cat.jpg"</a> alt="A cute orange cat lying on its back.">
  </main>
</body>
</html>
  **Your browser information:**

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36

Challenge: Step 14

Link to the challenge:

The img element must be wrapped in the a.
Ex.

<a ...><img ...></a>
1 Like

much more sense now thank you!

Please mark as “Solution” to the post that helps you to the solution, like that you also close the question.

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.