Html help on src

Tell us what’s happening:
how to point your src to a particular parameter

Your code so far

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

<h2>CatPhotoApp</h2>
<main>

<img src="https://bit.ly/fcc-relaxing-cat/to/ image.jpg" alt="kitten image.">
<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/87.0.4280.88 Safari/537.36.

Challenge: Add Images to Your Website

Link to the challenge:

Hi there,
you need to set the src to the URL address. src = URL address

https://bit.ly/fcc-relaxing-cat

like this <img src=" " alt=" ">

Also, pay attention to the instruction. it says add an image within the main section of the code:

Within the existing main element, insert an img element before the existing p elements.

I see two image elements. There should only be one. It also looks like you have a space in the url that shouldn’t be there.