Pls help im stuck at image

Tell us what’s happening:

cant move on from this

Your code so far


<h2>CatPhotoApp</h2>
<main>
<img src="http://bit.ly//fcc-relaxing-cat" alt="fcc-relaxing-cat">
<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 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36.

Challenge: Add Images to Your Website

Link to the challenge:

Include https: in the src attribute. This points towards the URL in a secure way.

not working, still stuck

h2>CatPhotoApp

fcc-relaxing-cat

Kitty ipsum dolor sit amet, shed everywhere shed everywhere stretching attack your ankles chase the red dot, hairball run catnip eat the grass sniff.

Purr jump eat the grass rip the couch scratched sunbathe, shed everywhere rip the couch sleep in the sink fluffy fur catnip scratched.

my code

like this: https://bit.ly/fcc-relaxing-cat is the correct way. You currently have http://bit.ly/fcc-relaxing-cat and you need to add an s to the end of your http.

Just add this:

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

Under the <main> tag

The problem is you are adding bit.ly// instead of bit.ly/

Also you have to use https insted of http