Pls some one help me with this Your image should have a src attribute that points to the kitten image. error

Tell us what’s happening:

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 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.105 Safari/537.36 Edg/84.0.522.52.

Challenge: Add Images to Your Website

Link to the challenge:

Overall seems fine. But let’s suppose there is an error in the link, and I am supposing you’re copying it by hand. Reading through it could be tiring.

So maybe try pasting the link they provide, and let me know what happens…

You typed the web address incorrectly. When they give a website address that you need to reference in your code the simplest thing to do is copy and paste the link they provide. In this instance it should be: <img src=“ https://bit.ly/fcc-relaxing-cat” alt=“your text”>

Have a look here is the correct code.
In your answer you are writing address as http: and the link you need to put in is https which is why its not working.

<h2>CatPhotoApp</h2>
<main>

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

  <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>