"alt attribute" Issues in HTML

Tell us what’s happening:
Trouble adding an “alt attribute” in HTML . Novice in need of help.
Is my “alt” empty? What am I not seeing/doing?

Your code so far


<h2>CatPhotoApp</h2>
<main>
<img src=https://bit.ly/fcc-relaxing-cat alt=cute kitties relaxing>

<p>Kitty ipsum dolor sit amet, shed everywhere shed everywhere stretching attack your 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 12871.102.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.141 Safari/537.36.

Challenge: Add Images to Your Website

Link to the challenge:

Hello and Welcome to FCC Forums @seldersta,

  • The challenge asks you to add alt attribute to the image. In HTML, attributes will always have a value that is contained within a double quote ". Ex:
<img src="your-link" alt="alternative text">
1 Like