Learn HTML by Building a Cat Photo App - Step 12

Tell us what’s happening:

I need help and give me correct answer to fill the code the issue is add the words see m9re before the anchor element and in our gallery after the anchor element

Your code so far

<html>
  <body>
    <main>
      <h1>CatPhotoApp</h1>
      <h2>Cat Photos</h2>
      <!-- TODO: Add link to cat photos -->
      <p>Everyone loves cute cats 
<!-- see more -->

      <a href="https://freecatphotoapp.com">cat photos</a>

<!-- in our gallery-->

      <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 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Mobile Safari/537.36

Challenge Information:

Learn HTML by Building a Cat Photo App - Step 12

Step 12:
Add the words See more before the anchor element and in our gallery after the anchor element.

Just directly add See more text before the a element.

By the way,you miss the closing tag of your p element!

Happy Coding! Welcome!