Learn HTML by Building a Cat Photo App - Step 12

Sorry, your code does not pass. Hang in there.

The link’s text should be cat photos. You have either omitted the text or have a typo.

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

<!-- User Editable Region -->

  <p>Click here to view more <a href="https://freecatphotoapp.com">cat photos.</a>.</p>
      <a href="https://freecatphotoapp.com">link to cat pictures</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 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36

Challenge Information:

Learn HTML by Building a Cat Photo App - Step 12

remove the dot in the “cat photos.”

Welcome to the community @askpravinjadhav !

The text is not correct for the code.

Suggestion: Reset the step, and use the example from the step for guidance on how to enter the anchor around the words cat photoswhile they remain within the p element statement.

Example from step 12

<p>I think <a href="https://www.freecodecamp.org">freeCodeCamp</a> is great.</p>

Happy coding!