Learn HTML by Building a Cat Photo App - Step 12

it says " The link’s href value should be https://freecatphotoapp.com . You have either omitted the href value or have a typo." can someone help me?

CatPhotoApp

Cat Photos

  <p>See more <a>https://freecatphotoapp.com</a> in our gallery.</p>
  <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>
```

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Safari/537.36 Edg/111.0.1661.62

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

Link to the challenge:

Welcome to our community!

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

Compare these two lines. In the second you have text turner into the link. Do the same for the first. Restart step, because you deleted the words “cat photos”, and didn’t put the url address into the opening <a> tag.