Learn HTML by Building a Cat Photo App - Step 15

Hellosmart people I’ve had a massive stroke with loads of brain damage but I still enjoy learning even if I can’t remember everything it’s still good for my recovery. So I’m on step 15 of the cat photoapp lesson and stuck here’s what I have so far
<img src=“https://cdn.freecodecamp.org/curriculum/cat-photo-app/relaxing-cat.jpg” <a target=_blank" href=" https://freecatphotoapp.comhttps://freecatphotoapp.com">cat photos alt=“A cute orange cat lying on its back.”>Did I miss omething stupid? Thank you for any guidance CathleenTell us what’s happening:
Describe your issue in detail here.

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" <a target=_blank" href=" https://freecatphotoapp.comhttps://freecatphotoapp.com">cat photos</a> alt="A cute orange cat lying on its back.">
    </main>
  </body>
</html>

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:105.0) Gecko/20100101 Firefox/105.0

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

Link to the challenge:

so just turn the img into a link exactly the same way you turned the words “cat photos” in step12 into a link.

(that is, place an anchor opening tag on the left side of the img tag and a closing anchor tag on the right side of the img tag as per usual when making things into links)

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