Build a Cat Photo App - Step 17

Tell us what’s happening:

My anchor codes are missing something I changed the href link and i thought my closing tag of was fine but it keeps giving me an error

Your code so far cat photos in our gallery.

  <img src="https://cdn.freecodecamp.org/curriculum/cat-photo-app/relaxing-cat.jpg" alt="A cute orange cat lying on its back.">
<html>
  <body>
    <main>
      <h1>CatPhotoApp</h1>
      <h2>Cat Photos</h2>
      <p>Everyone loves <a href="https://cdn.freecodecamp.org/curriculum/cat-photo-app/running-cats.jpg">cute cats</a> online!</p>
      <p>See more <a target="_blank" href="https://freecatphotoapp.com">cat photos</a> in our gallery.</p>

<!-- User Editable Region -->

      <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 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36

Challenge Information:

Build a Cat Photo App - Step 17

Can you say what you are asked to do in this step?

Turn the image into a link by surrounding it with necessary element tags. Use https://freecatphotoapp.com as the anchor’s href attribute value. this is the task to do but i guess i got confused. I thought i did but i cant get it correct

What did you do? I don’t see any anchor tags around your image.

cat photos in our gallery.

  <img src="https://cdn.freecodecamp.org/curriculum/cat-photo-app/relaxing-cat.jpg" alt="A cute orange cat lying on its back.">
<a href="url">This is a link (anchor)</a>

<img src="image.png" alt="This is an image"/>

You’re asked to surround the image with a link.

1 Like

CatPhotoApp

Cat Photos

  <p>
    Everyone loves 
    <a href="https://cdn.freecodecamp.org/curriculum/cat-photo-app/running-cats.jpg">
      cute cats
    </a> 
    online!
  </p>

  <p>
    See more 
    <a target="_blank" href="https://freecatphotoapp.com">
      cat photos
    </a> 
    in our gallery.
  </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>

hi @kr1shma , if you have a question please create your own topic

If you have a question about a specific challenge as it relates to your written code for that challenge and need some help, click the Help button located on the challenge.

The Help button will create a new topic with all code you have written and include a link to the challenge also. You will still be able to ask any questions in the post before submitting it to the forum.

Thank you.