Video tutorialTrack course · freeCodeCamp
Speed
Transcript & captions
5/5
Every <img> needs an alt attribute. Decorative images get alt="" so screen readers skip them; meaningful images get a short description.
htmlhtml
<figure>
<img src="photo.jpg" alt="Neon skyline at night" width="600" height="400" loading="lazy">
<figcaption>Night city</figcaption>
</figure>Try it yourself
Knowledge check
0/1 answeredWhat should alt be for a purely decorative image?