Learn HTML by Building a Cat Photo App - Step 15

Tell us what’s happening:
Trying to turn the image into a link but I don’t seem to be adding the anchor element properly.

Your code so far

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

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

<!-- User Editable Region -->

    </main>
  </body>
</html>

Your browser information:

User Agent is: Mozilla/5.0 (X11; CrOS x86_64 14816.131.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36

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

Link to the challenge:

You put the anchor element inside of the img tag. This is not valid HTML. The anchor element wraps, or goes around the img tag. Similar to how the anchor element wraps the text cat photos in the p element.