Can you guys help me :(

my src attribute is not working
my code is relaxing cat so far**


<img src="https ://bit.ly/fcc-relaxing-cat" alt="relaxing cat"/>
<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 (X11; CrOS x86_64 13310.93.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.133 Safari/537.36.

Challenge: Add Images to Your Website

Link to the challenge:

there is a space in the URL, between https and the ://bit.ly/fcc-relaxing-cat
remove the space and it will work

like that: 
<img src="https://bit.ly/fcc-relaxing-cat" alt="relaxing cat"/>
1 Like