Your image element's alt attribute empty

Tell us what’s happening:

Your code so far


<img src="https://bit.ly/fcc-relaxing-cat" alt=A cute orange cat lying on the ground./>

<h2>CatPhotoApp</h2>

<main>
<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 (X11; CrOS x86_64 13020.87.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.119 Safari/537.36.

Challenge: Add Images to Your Website

Link to the challenge:

<img src="https://bit.ly/fcc-relaxing-cat" alt=A cute orange cat lying on the ground./>

You forgot youre ’ " ’ for the alt element.

1 Like

The string of characters in the alt attribute must be wrapped by " or ’ .

<img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on the ground."/>