Step 14 in Responsive Web Design

What’s up?
I’m stuck on Step 14. Its asking me to turn the image into a link. I’ve tried , which appears to be half right. But then I’m told that I either deleted a URL (not true, because I’m looking directly at it) or some other seemingly phantom deletion or addition. Any insight would be helpful. I copied my current code.

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

To turn something into a link means to wrap it with the anchor (<a>) tags, just like the text “cat photos” in the <p> above the image. So if you want to turn the <img> into a link then what should you do?

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