Learn HTML by Building a Cat Photo App - Step 15

Tell us what’s happening:

Working on closing a href attribute and I’ve added a closing thing () but it’s not gelling together. Apparently it’s missing a closing tag. How do I go about making that happen? I’m new to all this so I’d appreciate some help

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

<!-- 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/123.0.0.0 Safari/537.36 Edg/123.0.0.0

Challenge Information:

Learn HTML by Building a Cat Photo App - Step 15

<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>```
You should make the <img src inside the achor tag

Welcome to the FFC forum. You didn’t need to modified your anchor (a) element. Reset your challenge and try to add anchor opening and closing tags around your existing element that’s I quoted above in my post. Then within anchor opening tag, add href and required link value.
@sayuruniduwara25