HTMLHTML · Lesson 07

Images & Media

img, alt text, sizing, figure, picture, video and audio.

Video tutorialTrack course · freeCodeCamp
Speed
Next lesson
Watch 00:00 · 1 checkpoints Watch on YouTube More on this topic
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 answered

What should alt be for a purely decorative image?