I stuck here idk what do next

Tell us what’s happening:

Your code so far


<main>
<img kitten src ="https://bit.ly/fcc-relaxing -cat." alt="relaxing cat"/>
<h2>CatPhotoApp</h2>
 <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/87.0.4280.66 Safari/537.36.

Challenge: Add Images to Your Website

Link to the challenge:

Hi @doria!

Welcome to the forum!

As mentioned earlier, the issue is with your link and you have the word kitten in the img tag which is not valid html.

Remove this

and

use the correct url provided for you. No spaces.

src="https://bit.ly/fcc-relaxing-cat"

Also the test will technically pass if you have a space here but it is good practice to not have spaces after src.

Hope that helps!

@doria Welcome to the FreeCodeCamp Forums! Looks like you have some extra spaces in your src attribute. Happy Coding! :smile:

1 Like