Glossary · Web Design

Screen Reader

skreen REE-durnoun

A screen reader is assistive software that converts on-screen content into speech or braille for people who are blind or have low vision.

Part of speech
noun
Pronunciation
skreen REE-dur
Origin
From 'screen,' the display, plus 'reader.' Screen readers emerged in the 1980s as software that converts on-screen text and elements into speech or braille.

What is Screen Reader?

A screen reader is assistive software that converts the content displayed on a screen into speech or braille, allowing people who are blind or have low vision to use computers, phones, and websites. Instead of relying on sight, the user listens to a synthesized voice reading the interface aloud, or reads it through a refreshable braille display, and navigates using the keyboard or touch gestures. The screen reader is the primary way many people with visual impairments access digital content, so how well a website works with one determines whether that content is usable at all.

Mechanically, a screen reader interprets the structure beneath what appears on screen, not just the pixels. On the web it reads the underlying HTML and the accessibility information the browser exposes, building an understanding of headings, links, buttons, form fields, images, and their labels. It then lets the user move through this structure in flexible ways: jumping from heading to heading to skim a page, listing all links, tabbing between interactive controls, or reading straight through in order. It announces each element's role and state, such as saying that a control is a checked checkbox or a collapsed menu, and it reads alternative text for images so that a described picture conveys meaning. Because it depends on this underlying structure, a screen reader can only be as clear as the markup it is given.

The name simply combines screen, meaning the display, with reader. Screen readers emerged in the 1980s as personal computers became widespread, offering software that could turn on-screen text into synthesized speech. They matured considerably over the following decades, and today several established screen readers are in common use across desktop and mobile platforms, some built directly into operating systems and others offered as standalone programs. Their evolution has paralleled the web's own growth, pushing the development of accessibility standards that make rich, interactive sites navigable.

For a business, supporting screen readers matters because it makes a website usable by a significant population of visitors who would otherwise be shut out. Accessibility is frequently a legal requirement, and neglecting it exposes an organization to complaints and litigation, but it is also simply good practice that broadens reach and reflects well on a brand. Much of the work that makes a site friendly to screen readers, such as clean semantic structure and descriptive text, also improves search engine understanding and overall usability, so the effort tends to pay off broadly.

The common mistakes usually come from building interfaces that look right but lack the underlying structure a screen reader needs. Images without alternative text, buttons that are really unlabeled icons, form fields with no associated labels, and content that only makes sense visually all leave screen reader users stranded. Relying on color or position alone to convey meaning causes similar problems. The remedy is writing meaningful markup, providing text alternatives, and testing the site by actually navigating it with a screen reader. Screen readers depend on well-formed HTML supplemented where necessary by ARIA, and they work in close partnership with keyboard navigation and clear focus states to deliver an accessible experience.

Why it matters

Designing for screen readers makes your site usable for millions of people, supports compliance, and often improves the underlying code quality for everyone.