Learn HTML by Building a Cat Photo App - Step 10

Tell us what’s happening:
Describe your issue in detail here.
Hello everyone. I am trying to get through the course and have problems writing the anchor sequence. can you guys help me with it?
Your code so far

<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://freecodecamp.org'></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>

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.3 Safari/605.1.15

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

Link to the challenge:

Hello, and welcome to the forum! Lets look at the directions one more time, and I think you should be able to fix the issue here. The directions tell you to

" Add an anchor element after the paragraph that links to https://freecatphotoapp.com . At this point, the link won’t show up in the preview."

You have the anchor after the paragraph element which is correct, but look at the link the challenge tells you to use, and compare with the link you are using in the href. You should see the issue.