Hey! 👋🏼
Redi School Munich - Spring 2021
An illness, injury, or condition that makes it difficult for someone to do the things that other people do
Mismatch between a person’s abilities and their environment
Inaccessible environments create disabilities
Use the right tag in the right place
A good HTML is crucial for assistive technologies
Headings need to be in the right order
Keep a logical order of elements in your code
All images need an alt attribute but some of them might not need any text
input:focus {
outline-color: red;
outline-style: dashed;
outline-width: medium;
outline-offset: 2px;
}
To be WCAG AA compliant, you need to satisfy all success criteria of levels A and AA. For AAA, you’ll satisfy all criteria for all three WCAG levels.
Can users perceive the content?
It includes things like color, alternative text, captions, content order, etc
Can users use UI components and navigate the content?
It includes things like proper keyboard access, no time limits, reduced motion, focus order and more
Can users understand the content? Can users understand the interface and is it consistent enough to avoid confusion?
It includes things like simple language, consistent navigation, proper labels and instructions, and more
Can the content be consumed by a wide variety of user agents (browsers)?
It includes things like compatibility, status messages, valid HTML and more
Work on your project
Think about questions for the next session