Web Accessibility Principles Flashcards
The Web Content Accessibility Guidelines
The Web Content Accessibility Guidelines (frequently referred to as WCAG, pronounced “WICK-ag”) are an internationally accepted set of technical standards that explain how to make web content more accessible to people with disabilities.
The standards are created by the World Wide Web Consortium (W3C) through its Web Accessibility Initiative. They are intended for web and application developers and designers, content creators, policymakers, purchasing agents, teachers, and students.
The most current version is WCAG 2.2.
WCAG 2.0 remains approved as ISO standard ISO/IEC 40500.
The WCAG standards are organized into principles, guidelines, and testable success criteria.
Web Accessibility Principles
The Web Accessibility Initiative at the World Wide Web Consortium outlined four main web accessibility principles in the Web Content Accessibility Guidelines, version 2.1. In order to be accessible, web content must be Perceivable, Operable, Understandable, and Robust.
The first letters of these principles form an acronym—POUR—which may help you remember them.
WCAG Principles
Web pages and applications must be:
- Perceivable
- Operable
- Understandable
- Robust
You can remember the principles by the acronym: POUR.
3 Levels of the WCAG
The success criteria are categorized into three levels:
- A: Minimal accessibility.
- AA (“double A”): Accessibility for most people. Most commonly used.
- AAA (“triple A”): Highest level of accessibility.
Perceivable
Perceivability is about making the output of web content available through multiple sensory modalities.
Biological Pathways to Perception
Perceivable
You have to be able to perceive web content through at least one of your biological senses for it to be accessible at all. Of these, we’re really only concerned about the first three: sight, sound, and touch. Someday someone may invent a way to taste or smell the web, but until then, we can safely assume that we don’t need to worry about the flavor or scent of our web pages.
(Perceivable)
Seeing Web Content
Most people perceive web pages by looking at them. Your eyes focus the information onto photo-receptors in your retina, and your brain translates that raw visual stimulus into meaningful information. This works well for everyone who has good vision, but not so well for those who do not. The majority of web developers and web designers are relatively young and able-bodied, so they design web content that works for people just like themselves. Often developers and designers don’t even realize that some people can’t see the content at all, so they don’t build in other ways to perceive the content into the designs.
(Perceivable)
Hearing Web Content
People who cannot effectively perceive visual information—because they are partially or completely blind—need to perceive web sites some other way. Most blind people can hear, so sound is the most effective alternative method of perceiving web content for the majority of people who are blind. Screen reader software converts the digital text into synthesized speech, allowing blind people to listen to web content. Listening to web content is a fundamentally different experience from looking at web content, just as hearing someone describe an event is fundamentally different from watching it, but different does not necessarily mean bad, unless the experience is not parallel, or functionally equivalent. People who are blind are used to listening rather than seeing, so listening to web content is a logical and natural approach for them.
(Perceivable)
Feeling Web Content
For those who cannot see or hear adequately to view or listen to web pages, there is one more sensory modality available: touch. Digital text can be converted to three-dimensional braille characters that a person can feel with the hands. Traditional braille is printed on sturdy paper, with raised dots configured in an alphabet of characters and symbols. Modern refreshable braille devices use the same raised dots, but bypass the hassle and expense of the paper printing process. Refreshable braille devices present a line of text at a time, and allow the user to feel it, then move on to the next line of text. The screen reader software to convert the digital text to braille is essentially the same as the screen reader software that converts digital text to speech, and allows for nearly identical functionality. It’s just that the output is perceived through touch rather than through sound. For people who are both deaf and blind, tactile/touchable output is the only way for them to access web content at all.
Why Perceivability Matters
If you can’t perceive web content, it may as well not exist.
The good news is that you don’t have to cure blindness or deafness to make images or sounds accessible to people with sensory disabilities. You just have to provide an acceptable alternative that works for their available sensory modalities. To make an image accessible, provide a digital text description. Screen readers can convert this text description into speech or braille to make it available by sound or touch. To make an audio recording accessible, provide a digital text transcript that deaf people can see with their eyes, and that people who are both deaf and blind can feel with their fingers when it is converted into braille. Web accessibility can get more complicated than these simple examples, but the principles are still the same. Everything has to be perceivable to be at all useful.
(Perceivable)
The Universal Format: Digital Text
You may have noticed that digital text solves the perceivability problem for people who are blind, for people who are deaf, and for people who are both blind and deaf. Digital text is the most universally accessible format available, because it can be converted into all of the other useful sensory formats. That’s something to make note of, and to keep in mind as you learn more about web accessibility.
Making Dynamic Content Perceivable
You can also make dynamic interactions accessible using digital text. You can use ARIA (“Accessible Rich Internet Applications”) to announce when a tab is “expanded” or “collapsed”. You can use an ARIA live region to announce new content as it is inserted into the DOM (Document Object Model). There are lots of possibilities. And yes, you do need to announce these kinds of things. Blind users won’t know when tabs expand or collapse unless this change of state is announced to them. If new content is injected into a page—such as an error message or a confirmation message—blind users need to hear this new information. ARIA live regions can be used for this purpose, or you can move the browser’s focus to those areas to force screen readers to read them. Either approach can be appropriate, depending on the circumstances and overall functionality of the interface.
Make Sure Users Know What’s on the Web Page
Perceivable
One way to summarize the need for perceivability is to say that users can’t access content unless they know it’s there. Make sure your users know what’s on the web page. This means making the content and functionality available through sight, sound, and touch. Digital text—whether visible or hidden (using valid accessibility techniques)—is the most universal method of accomplishing the broadest perceivability.
Operable
Operability is about making the input methods of web content functionally available to a wide range of input devices, including:
- mouse or touchpad
- keyboard
- touchscreen
- voice recognition software
- other specialized input devices (most of which emulate the keyboard or mouse)
(Operable)
Everything Has to Work
The goal of operability is to ensure that web components work. All features—particularly navigation and dynamic or interactive components—must be functional, no matter what input device a person is using. If any part of the web content is not available with a given input device, the content is essentially broken for that user, even if the features are available through other input devices.