Learn HTML by Building a Cat Photo App - Step 12

Tell us what’s happening:

hey guys, help me check my code, and find something wrong…

Your code so far

<html>
  <body>
    <main>
      <h1>CatPhotoApp</h1>
      <h2>Cat Photos</h2>
      <!-- TODO: Add link to cat photos -->

<!-- User Editable Region -->

      <P> <a
      href="https://freecatphotoapp.com">Cat photos</a>
      See more cat photos in our gallery.

<!-- User Editable Region -->

      <a href="https://freecatphotoapp.com">link to cat pictures</a>
      <img src="https://cdn.freecodecamp.org/curriculum/cat-photo-app/relaxing-cat.jpg" 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/128.0.0.0 Safari/537.36 Edg/128.0.0.0

Challenge Information:

Learn HTML by Building a Cat Photo App - Step 12

Welcome to the forum @h03930999

For this challenge, the anchor element needs to wrap around the word cat photos already in the paragraph element.

You inserted text instead on only adding code.

Also, the paragraph element is missing a closing p tag.

I looks like you also altered the seed code, which the instructions did not ask you to do. Doing this may cause the tests to fail.

Please reset the step to restore the original code and try again.

Happy coding