Learn HTML by Building a Cat Photo App - Step 17

Tell us what’s happening:

i need help i think everything is correct but it keeps telling me its not i checked other forums with no result

Your code so far

<html>
  <body>
    <main>
      <h1>CatPhotoApp</h1>
      <h2>Cat Photos</h2>
      <p>Everyone loves <a href="https://cdn.freecodecamp.org/curriculum/cat-photo-app/running-cats.jpg">cute cats</a> online!</p>
<!-- User Editable Region -->
      <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>
<!-- User Editable Region -->
    </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/149.0.0.0 Safari/537.36

Challenge Information:

Learn HTML by Building a Cat Photo App - Step 17

GitHub Link: freeCodeCamp/curriculum/challenges/english/blocks/learn-html-by-building-a-cat-photo-app/5dfa30b9eacea3f48c6300ad.md at main · freeCodeCamp/freeCodeCamp · GitHub

it looks like you are missing part of the starting code, please reset the step with the image Reset button, then try again, make sure to not delete anything of the existing code

Hi buddy, Here you need to do see how the img element in wrapped in an link inside an anchor tag

<a href="example-link">
  <img src="image-link.jpg" alt="A photo of a cat.">
</a>

Inside your code the closed anchor tag is missing.

Kindly do add that too.

Hope You Understand.