Learn HTML by Building a Cat Photo App - Step 12

I need some help here or the 12th chapter of "html " , thanks

Your code so far

<html>
  <body>
    <main>
      <h1>CatPhotoApp</h1>
      <h2>Cat Photos</h2>
      <!-- TODO: Add link to cat photos -->
      <p>see more<a href="https://freecatphotoapp.com">cat photos in our gallery.</a></p>
      <a href="https://freecatphotoapp.com">link to cat pictures</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 mobile information:

Infinix X665 - Android 11 - Android SDK 30

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

Link to the challenge:

You changed the text, See has become see, you have removed some spaces (like the one between moreand cat). Also the anchor text should be only “cat photos”, while in your case it is “cat photos in our gallery.”

1 Like