Learn HTML by Building a Cat Photo App - Step 12

ive tried this code about 57 times and i really dont understand the p inside the a element thing. the link needs to be turned into text. im so frustrated right now and i keep taking breaks and coming back. i can usually figure out on my own but not this one. if someone could show me this answer or an example. i have searched the whole internet and oddly enough they say you cant use the a and p together, because p is used for phrasing content.
Describe your issue in detail here.

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

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

<!-- User Editable Region -->

      

<!-- User Editable Region -->

      <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/109.0.0.0 Safari/537.36 Edg/109.0.1518.78

Challenge: Learn HTML by Building a Cat Photo App - Step 12

Link to the challenge:

There should be a p element before the img element, with the text, See more cat photos. The text, ‘cat photos’ should be wrapped around an anchor element.

the text that I mentioned above goes here

. The text that reads, 'cat photos' needs to be wrapped around an anchor element. In the opening anchor tag you put the href attribute with the value as instructed. I hope this helps. Thank you.