Stuck for days.... New Responsive Web Design Step 14

Tell us what’s happening:
It wants me to make the picture of a cat into a link. The anchors seem fine. I’ve tried placing the href literally everywhere. Please help.

  **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>
    <a> <img src="https://cdn.freecodecamp.org/curriculum/cat-photo-app/relaxing-cat.jpg" alt="A cute orange cat lying on its back." href="https://freecatphotoapp.com"></a>
  </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/103.0.0.0 Safari/537.36

Challenge: Step 14

Link to the challenge:

Hi @Koda_Kirk !

You placed the href value here inside the img element.

This is wrong.

href values go inside the opening anchor tag.

If you need more help on anchor tags, look to the earlier code you wrote here

Once you fix that issue, then the test will pass

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