Learn HTML by Building a Cat Photo App - Step 15

Tell us what’s happening:

Hi may someone help me with this one. I dont understand what it means when it asks for a you are missing a closing (a) tag after the img?

Your code so far

<html>
  <body>
    <main>
      <h1>CatPhotoApp</h1>
      <h2>Cat Photos</h2>

<!-- User Editable Region -->

      <!-- TODO: Add link to cat photos -->
     <p>See more <a target="_blank" href="https://freecatphotoapp.com">cat photos</a> in our gallery.</p>
     <a> <img src="https://cdn.freecodecamp.org/curriculum/cat-photo-app/relaxing-cat.jpg" alt="A cute orange cat lying on its back."href="https://frecatphotoapp.com"</a>

<!-- User Editable Region -->

    </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/116.0.0.0 Safari/537.36

Challenge Information:

Learn HTML by Building a Cat Photo App - Step 15

Please check the hrefand the alt attribute of the second link. Is it at the right place it’s supposed to be?

Look at to the first line, how you added anchor opening and closing tags around text cat photos. Same for this challenge, you need to add anchor opening and closing tags around your img element, with href and required link value.
@renevalti2006

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