Need help with Step 14

My photo is there and it links properly to the website, but it won’t let me past the step.

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

Link to the challenge:

1 Like

You moved the image into the p element and deleted the text that was in the p element. You don’t want to move or delete anything, you just want to add the necessary tags to turn the image into a link.

I would restart the step to get the original HTML back and try again based on what I said above.

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