Learn HTML by Building a Cat Photo App - Step 15

Tell us what’s happening:
I’m really struggling with this one - trying to make the image a link. I’ve read a few posts here but can’t find anyone having the same issue. My hint just tells me to remove any duplicate tags… but the only other one I can see is in a previous line of code relating to a text element, not the img element.
Your code so far

<html>
  <body>
    <h1>CatPhotoApp</h1>
    <main>
      <h2>Cat Photos</h2>
      <!-- TODO: Add link to cat photos -->
      <p>Click here to view more <a target="_blank" href="https://freecatphotoapp.com">cat photos</a>.</p>
     <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."</a>
    </main>
  </body>
</html>

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.103.5060.114 Safari/537.36 Edg/103.0.1264.49

Challenge: Learn HTML by Building a Cat Photo App - Step 15

You have a typo( you should have no space between the"a" element and the"img" element).

Thankyou - I’ve fixed that, but it still hasn’t solved the problem. Just to confirm I’ve changed the section you meant, the line now reads:

 <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."</a>

Your code should be : 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.”>(don’t forget to use the “<”, I erased them because it wouldn’t show as now, it would show as an image).

1 Like

you seem to have erased the end of the img (elements end with > )

2 Likes

Excellent, thankyou both, got there!

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