Free alt text checker

Paste a URL. Get every image on the page that has no alt attribute at all, and the source of each one so you can find it.

No account, nothing stored. Image sources are listed as text, never loaded, so checking a page does not make your browser fetch anything from it.

An empty alt is not a missing alt

This tool flags images with no alt attribute at all. It does not flag alt="", because that is the correct markup for a decorative image, not an oversight.

The distinction is the whole subject. A screen reader handles the two completely differently:

MarkupWhat a screen reader does
alt="Signed contract"Reads the description. Correct for an image carrying meaning.
alt=""Skips it entirely. Correct for decoration: a divider, a background flourish, an icon beside text that already says the same thing.
No alt attributeFalls back to announcing the file name, so the user hears something like "I M G underscore 4 0 2 1 dot J P G". This is the fault.

Which is why a tool that reports "images missing alt text" and counts alt="" among them is telling you to break working pages. Adding a description to a decorative divider makes the page worse, not better.

What to write

The relevant standard is WCAG 1.1.1 Non-text Content, at level A, which is the baseline almost every accessibility requirement starts from.

What this tool reads

It reads the raw HTML your server sends, so it sees <img> tags that arrive with the page. Three things it will miss:

The Teardown extension covers all three: it reads the rendered page in your own tab, shows a thumbnail of each offending image so you can see what it is, and clicking one scrolls the page straight to it.

Related