Build a Cat Photo App - Step 17

Tell us what’s happening:

I was trying to build Cat Photo App and I am stack.
I am missing a closing (a) tag after the image. on Step 17
please assist.

Your code so far

<html>
  <body>
    <main>
      <h1>CatPhotoApp</h1>
      <h2>Cat Photos</h2>
      <p>Everyone loves <a href="https://freecatphotoapp.com">cute cats</a> online!</p>
      <p>See more <a target="_blank" href="https://freecatphotoapp.com">cat photos</a> in our gallery.</p>
        <a img src="https://cdn.freecodecamp.org/curriculum/cat-photo-app/running-cats.jpg"></a>
     <a href="https://freecatphotoapp.com"></a>

<!-- 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.">

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

Challenge Information:

Build a Cat Photo App - Step 17

Hi buddy, See here this is the img element which is wrapped under an anchor element so that it will be able to become an link

<a href="example-link">
  <img src="image-link.jpg" alt="A photo of a cat.">
</a>

And here this is the given img element which you need to wrap like the above one.

And the link address you will get in the given instructions when you do so then you will be able to pass this test.

Hope You Understand