Learn HTML by Building a Cat Photo App - Step 15

Tell us what’s happening:

I have it set with the link before the image and when I click on the image it says it works. so I’m confused on what I did wrong?

Your code so far

<html>
  <body>
    <main>
      <h1>CatPhotoApp</h1>
      <h2>Cat Photos</h2>
      <!-- TODO: Add link to cat photos -->
      <p>See more <a target="_blank" href="https://freecatphotoapp.com">cat photos</a> in our gallery.</p>

<!-- User Editable Region -->

 <a href="https://freecatphotoapp.com">  <img src="https://cdn.freecodecamp.org/curriculum/cat-photo-app/relaxing-cat.jpg" alt="A cute orange cat lying on its back.">  

<!-- User Editable Region -->

    </main>
  </body>
</html>

Your browser information:

User Agent is: Mozilla/5.0 (X11; Linux x86_64; rv:125.0) Gecko/20100101 Firefox/125.0

Challenge Information:

Learn HTML by Building a Cat Photo App - Step 15

You have space between anchor opening tag and img element, also you don’t have anchor closing tags after img element.

1 Like

you are missing the closing </a> tag. Also the extra spaces between the opening <a> tag and the <img> may confuse the tests

1 Like