Learn HTML by Building a Cat Photo App - Step 14

Tell us what’s happening:

In step 14 they are asking to turn cute cats into an anchor element that links to the given link. I have ytried everything but i am confused why it’s getting wrong every time.

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 cute cats online!.<a href="https://cdn.freecodecamp.org/curriculum/cat-photo-app/running-cats.jpg">cute cats</a></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 (X11; Ubuntu; Linux x86_64; rv:129.0) Gecko/20100101 Firefox/129.0

Challenge Information:

Learn HTML by Building a Cat Photo App - Step 14

Welcome to the forum @maria112abbasi

You inserted new text, and turned that text into a link.
For this step you need to turn the text already inside the paragraph element into a link.

Please reset the step to restore the seed code and try again.

Happy coding