Why is it saying its wrong

Tell us what’s happening:

Describe your issue in detail here.

Your code so far


<!-- User Editable Region -->

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

<!-- User Editable Region -->

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

      <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>

<!-- User Editable Region -->

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/118.0

Challenge Information:

Learn HTML by Building a Cat Photo App - Step 12

Where it says “see more cat photos in our gallery.” there is no closing (anchor) tag.

remove the p element before cat photos and close a element. You have already applied the p element do not need to put it in between.