Issue with add Images to your website

Tell us what’s happening:
I am having issues with the src attribute. I have it in my code, but I keep getting the error: Your image should have a src attribute that points to the kitten image.

Your code so far


<h2>CatPhotoApp</h2>
<img>
<main>
  
  
  <p>Kitty ipsum dolor sit amet, shed everywhere shed everywhere stretching attack your ankles chase the red dot, hairball run catnip eat the grass sniff.</p>
  <p>Purr jump eat the grass rip the couch scratched sunbathe, shed everywhere rip the couch sleep in the sink fluffy fur catnip scratched.</p>
</main>
<img src="https://bit.ly/fcc-relaxing-cat" alt="relaxing cat">

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:65.0) Gecko/20100101 Firefox/65.0.

Link to the challenge:

Add the image before the h2 (pretty bad error message in this case i must say).

My bad the challenge text does say

Insert an img tag, before the h2 element.

but the problem you had is that you have a stray opening img tag right after the h2.

<h2>CatPhotoApp</h2>
<img> <!-- stray tag -->

solved already thanks for the help i really do appreciate

you have an empty <img> tag under the h2 and an <img> tag under the <main> tag.
take the second one and paste it into the space of the first.