Stuck on Exercise?

Hi guys,

I’m stuck on this exercise, I’m not understanding what I should do or what the question is asking me to do.

If anyone can offer any tips or suggestions, I’d appreciate it.

Thanks!

: )

  **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>
    <img src="https://cdn.freecodecamp.org/curriculum/cat-photo-app/relaxing-cat.jpg" alt="A cute orange cat lying on its back.">
  </main>
</body>
</html>
  **Your browser information:**

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.2 Safari/605.1.15

Challenge: Step 14

Link to the challenge:

You need to turn the cat photo into link.

Hey there! Welcome to the forums :wave: :slightly_smiling_face:

Remember a step earlier when you turned the text “cat photos” into a link? Here they want you to do the same but with an image. This is possible because anchor tags <a> can contain image tags <img>.

Something like this:

<a href="url you are using"> 
  content... in this case an <img>
</a>

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