Learn HTML by Building a Cat Photo App - Step 12

Tell us what’s happening:

i seem s im not adding the desired text before the anchor element what am i doing wrong .

Your code so far

<html>
  <body>
    <main>
      <h1>CatPhotoApp</h1>
      <h2>Cat Photos</h2>
      <!-- TODO: Add link to cat photos -->
      <p>Everyone loves cute cats online!</p>

<!-- User Editable Region -->

      <p> see more  <a href="https://freecatphotoapp.com">cat photos</a>in our gallery</p>

<!-- 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/132.0.0.0 Safari/537.36

Challenge Information:

Learn HTML by Building a Cat Photo App - Step 12

Hi and welcome to the forum :wave:

Double check your spacing and capitalization. It needs to be EXACTLY as instructed.

1 Like

So, the code you wrote is good code. The reason you’re getting error messages is that you did more than what was asked. You actually wrote better code than what was asked. Which is good, because it shows that you understand the concepts. Going through these courses can sometimes be confusing because sometimes the code you’re asked to type is incomplete. It’s done this way to make sure you understand each step.

To pass this lesson, what you need to do is to exactly what is asked of you and nothing more.

1 Like