Help me please I don't understand

I keep pressing submit, while I think i am right I am probably wrong.


<img src="http://bit.ly/fcc-relaxing-cat" alt="cat laying on back">

<h2>CatPhotoApp</h2>
<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>

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36.

Challenge: Add Images to Your Website

Link to the challenge:

There are two issues here with your code:
1: Image tags are self-closing: <img ... />. Be sure to close it properly.
2: Probably more importantly, your image tag is in the wrong place in your code. If you reset the code for this lesson, you’ll see they’ve provided you a space for where your image should go. Hint: read the instructions again that start with “Within…”

thank you, it is now in the right place but it says Your image should have a

your image should have a src attribute that points to the kitten image

does that mean that <img src=" is not correct and if not how is it supposed to be written?

Yes, it is not correct. Take a real close look at the URL they want you to include in the img tag. It is not quite the same as what you have in there. You can always copy/paste from the instructions.

thank you very much!