Learn HTML by Building a Cat Photo App - Step 14

Tell us what’s happening:

been stuck on Step 14
Turn the existing text cute cats into an anchor element that links to https://cdn.freecodecamp.org/curriculum/cat-photo-app/running-cats.jpg.

Your code so far

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

<!-- User Editable Region -->

      <p>Everyone loves <a href="https://cdn.freecodecamp.org/curriculum/cat-photo-app/cute-cat.jpg".>cute cats</a> online!</p>

<!-- User Editable Region -->

      <p>See more <a href="https://freecatphotoapp.com">cat photos</a> in our gallery.</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>

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:134.0) Gecko/20100101 Firefox/134.0

Challenge Information:

Learn HTML by Building a Cat Photo App - Step 14

@narttson4ever
Hello! your code

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

Has the wrong link the test asked for you to input the link https://cdn.freecodecamp.org/curriculum/cat-photo-app/running-cats.jpg
You inputed the link https://freecatphotoapp.com into the anchor element instead of the link they asked you to use
Edit:
So change the href link into the correct one, and if you still have problems let me know.

signed,
Slightplyz
Happy coding!