Learn HTML by Building a Cat Photo App - Step 10

I do what its telling but it just wont work
Describe your issue in detail here.

**

CatPhotoApp

Cat Photos

  <p>See more cat photos in our gallery.</p> <a> <href='https://freecatphotoapp.com'></a>
  <img src="https://cdn.freecodecamp.org/curriculum/cat-photo-app/relaxing-cat.jpg" alt="A cute orange cat lying on its back.">
</main>
**
<html>
  <body>
    <main>
      <h1>CatPhotoApp</h1>
      <h2>Cat Photos</h2>
      <!-- TODO: Add link to cat photos -->

<!-- User Editable Region -->

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

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

Say if I wanted to turn this text into a link, I would not do

<p>this text</p> <a  href="..."></a> 

I would wrap this text within the <a>...</a> tags

<p><a href="...">this text</a></p>