Learn HTML by Building a Cat Photo App - Step 12

Tell us what’s happening:

My issue is trying to turn the “Cat photo” text in step 12, into a link, I don’t know what I am doing wrong

Your code so far

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

<!-- User Editable Region -->

      <p>See more cat<a href="https://freecatphotoapp.com"> photos</a>in our gallery</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; rv:130.0) Gecko/20100101 Firefox/130.0

Challenge Information:

Learn HTML by Building a Cat Photo App - Step 12

You need to make two works part of the anchor.
cat photos

Right now you only have one word there.

Also it looks like you erased the period.

You can click reset and try again but be more careful to add the anchor tags without modifying the text.

I think you need to place your img tag inside the anchor tag.

Hello there @rodrick0211 welcome to fcc forum.

<!-- User Editable Region -->

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

<!-- User Editable Region -->

To pass the test you need to do some changes.

  • First click on "Reset Button", so you will get the original code base again.
  • Then put"cat photos" inside <a></a> tag.

And you should pass the challenge. Happy learning.