Learn HTML by Building a Cat Photo App - Step 12

It is telling me I have a typo but I have read it over and over again and can not fiind anything that looks off.

See more cat photos in our gallery.

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

<!-- User Editable Region -->

      <p><a href= "cat photos"></a>See more <a href="https://freecatphotoapp.com">cat photos</a> in our gallery.</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; CrOS x86_64 14541.0.0) 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

You added two anchor elements to the p element. You should only add one, the one around “cat photos”.

1 Like

Where is the other anchor?

Your code:

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

Do you see two anchor elements?

Hey @wallstreetinvestor38
You only need to turn the “cat photos” into a link
So only enclose cat photos inside an a tag
I would suggest you reset the step to get the original text then turn the text cat photos into a link

Okay thank you guys I am new at coding so I am pretty slow.

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