Learn HTML by Building a Cat Photo App - Step 14

Tell us what’s happening:

Need help to checking my code some missunderstanding issues are face. Please help me

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!</p> <a href="https://cdn.freecodecamp.org/curriculum/cat-photo-app/running-cats.jpg"><a> cute cats </a>

<!-- User Editable Region -->

      <p>See more  in our gallery.</p> <a href="https://freecatphotoapp.com">cat photos</a>
      <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 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36

Challenge Information:

Learn HTML by Building a Cat Photo App - Step 14

Hi,
You don’t need to add a new text. Try adding your anchor tags around the words “cute cats” inside the p element.
Good luck!

Hey buddy See, You need to link the word cat photos in the existing p tag.

Kindly do remove the written anchor tag.

<a href="https://cdn.freecodecamp.org/curriculum/cat-photo-app/running-cats.jpg"><a> cute cats </a>

And convert the existing one.

Hope you Understand.