Skip to content

Alt Text Checker

Scan pasted HTML for images missing alt attributes

Updated

What is the Alt Text Checker?

How it works

Examples

Product image with no alt attribute

<img src="blue-shirt.jpg" />
Missing alt — every img must have an alt attribute. Add a description such as alt="Blue cotton crew-neck shirt, front view".

Decorative image with empty alt

<img src="divider.gif" alt="" />
Decorative — empty alt is correct for non-informative images. Screen readers will skip this image.

Suspicious filename-based alt text

<img src="IMG_4023.jpg" alt="IMG_4023" />
Suspicious — alt text matches the filename. Replace with a meaningful description of the image content.

Full page audit with mixed results

<img src="hero.jpg" alt="Mountain sunrise over the valley" /><img src="logo.png" /><img src="spacer.gif" alt="" />
3 images found — 1 good, 1 missing alt, 1 decorative. Pass rate 67%. Download the full audit report as Markdown.

Frequently asked questions