Learn HTML by Building a Cat Photo App - Step 12

Can someone help me with this code? It keeps failing even though I know it is correct! I just cant find the problem.

Here is my code

See more cat photos in our gallery cat photos

<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 <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 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36

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

Link to the challenge:

1 Like

You added extra text to the sentence in the p element. Specifically, you added an extra cat photos at the end of the sentence and then made that the link. You don’t want to add any extra text. You want to turn the words cat photos that are already there in the sentence into a link.

The words cat photos within the sentence See more cat photos in our gallery. Should have the link, but it looks like you’ve added the link at the end of the sentence. Also, be mindful of the extra spaces within your <p> tags (and you might be missing a period as well).

Thank you after 2 days you helped me figure it out!

Thank you so much for your help! I finally solved it!

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.