Learn HTML by Building a Cat PhotoApp: Step 12

Pls help, I don’t know what went wrong here. I am stuck in this step.

<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</a> in our gallery.
</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>
1 Like

Nevermind , this is now resolved.

3 Likes

What was the solution? I am stuck on this one too

Hi there!

Welcome to the FCC forum. Turn the existing text cat photos in to a clickable link. You didn’t need to add another cat photos text.

1 Like

In your code, there’s a redundancy for the “cat photos” … you’ve inputed 2 “cat photos” , first is after the <p>, the second one is after the </a>

which will result to: See more cat photos in our gallery.cat photos

I hope you get it :sweat_smile:

1 Like

If you have a question about a specific challenge as it relates to your written code for that challenge and need some help, click the Ask for Help button located on the challenge (it looks like a question mark). This button only appears if you have tried to submit an answer at least three times.

The Ask for Help button will create a new topic with all code you have written and include a link to the challenge also. You will still be able to ask any questions in the post before submitting it to the forum.

Thank you.