Finding it hard to include images to my code

i hace tried my best but i can’t seem to get what it actually wants

Your code so far


<h2>CatPhotoApp</h2>
<main>
<img src="https://bit.ly/fcc-relaxing-cat alt="cat sitting majestically.">

<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 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/603.3.8 (KHTML, like Gecko) Version/10.1.2 Safari/603.3.8.

Challenge: Add Images to Your Website

Link to the challenge:

You are enclosing alt attribute name in the src attribute value. The href attribute is supposed to point to the URL of the image. Compare this and yours.

<img src="https://bit.ly/fcc-relaxing-cat" alt="cat sitting majestically.">

you wrongly placed the closing quitation mark of the image src attribute and now browser will think even space and alt= is part of the image address.