Help with "adding images to your website"

**Tell us what’s happening
its telling me “your image element alt attribute should not be empty”. i have tried solving it for 1 hour, please help what do i do ??

Your code so far


<h2>CatPhotoApp</h2>
<main>
<img src=https://bit.ly/fcc-relaxing-cat alt=kitty cat upside down>

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

If you have spaces in the alt string then you need to put quotes around it. In general, I would make it a habit to use quotes around all attribute strings even if there are no spaces. But that’s just me.

1 Like

thank you so much. Going to start doing that now!!!