Learn HTML by Building a Cat Photo App - Step 15

Tell us what’s happening:

i cannot seem to figure out how to put the link in the image, please help.

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 </a>
   <img src="https://https://freecatphotoapp.com.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 (Windows NT 10.0; Win64; x64; rv:127.0) Gecko/20100101 Firefox/127.0

Challenge Information:

Learn HTML by Building a Cat Photo App - Step 15

You need to add a closing anchor element after the image closing tag. You have put the closing a tag in the wrong place.

can you be more specific please.

The instructions say to surround the image with the necessary anchor tag. You have written your anchor element before the image, not surrounding it.

You have also not put the closing tag on the opening “a” element.

Look at the example code in step 15.