Learn HTML by Building a Cat Photo App - Step 15

i am trying to make my image a link but i forgot how to put it in code form. i surrounded the link with the image tags and added an href before the the image source but it doesnt seem to be working

<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."></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/122.0.0.0 Safari/537.36

Challenge Information:

Learn HTML by Building a Cat Photo App - Step 15

You have two syntax issues.

Your first issue is here.

you didn’t close out the opening anchor tag.

the second issue here

attributes should be wrapped in quotes

attribute="value"

once you fix those things, then it will pass

1 Like

Hi! @jwilkins.oboe even wrote a guide detailing this topic, take a look at :slightly_smiling_face:

2 Likes

you have to put your <img/> tag in between the <a> tag.
e.g :

<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>

by doing this when you click on the image it will be go to the specified url.

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