Learn HTML by Building a Cat Photo App - Step 12

Tell us what’s happening:

Hello, I’m in the task 12, this is my code

See more cat photos in our gallery. cat photos


but they said the code does pass, I can’t fine the answer

Your code so far

<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>

<!-- User Editable Region -->

      <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 browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36

Challenge Information:

Learn HTML by Building a Cat Photo App - Step 12

Do you see how you have two cat photos on the sentence now?

Only the first one is supposed to be there. And only the first one is supposed to be clickable.

I try this one

cat photos


and it isn’t working, and I try this one

See more cat photos in our gallery.

and doesn’t work

please click the Reset button to restore the original code.
Then add the anchor tag around the words cat photos without retyping it.
The end result should look like this:

See more cat photos in our gallery.

(only cat photos is clickable)