Accessible imagery ensures everyone—including people using screen readers or with visual impairments—can understand your content. It's also a WCAG requirement that expands your audience and improves SEO.
Before: alt="A beautiful abstract background with blue and purple swirls"
After: alt="" (empty for purely decorative images)
Why: Decorative images add no information, so they should be hidden from screen readers.
Before: alt="Image of a person"
After: alt="A smiling woman in a blue shirt holding a tablet and pointing at a chart on screen"
Why: Descriptive alt text conveys the image's meaning and context.
Before: alt="Flowchart showing the process"
After: alt="Flowchart showing user journey: Sign up → Verify email → Complete profile → Start using service"
Why: Complex images need detailed descriptions or alternative text explanations.
<figure>
<img src="team-meeting.jpg" alt="Five diverse team members collaborating around a conference table with laptops and notes">
<figcaption>Our quarterly planning session brings together perspectives from all departments.</figcaption>
</figure>
<img src="decorative-pattern.png" alt="">
Add this checklist to your image workflow.