If you own a website or manage online services, you've likely heard the term WCAG, but may be unclear about what it actually means, which version you need to follow, and why it matters legally and practically. WCAG accessibility standards are increasingly enforced through lawsuits and government action, making compliance both a legal imperative and a business necessity. This guide explains WCAG in practical terms so you understand what's required and why.
What Is WCAG?
WCAG stands for Web Content Accessibility Guidelines. It's a set of technical standards developed by the World Wide Web Consortium (W3C), an international organization that creates web standards.
Think of WCAG as a rulebook for making websites usable by everyone, including people with disabilities. These standards explain specifically how web content should be structured, labeled, and presented so that people using assistive technology can access it.
WCAG is not a law itself, but it has become the standard that courts reference when evaluating whether websites comply with the Americans with Disabilities Act (ADA) and similar disability rights laws.
WCAG Versions: Which One Applies?
WCAG 2.0
WCAG 2.0 was published in 2008 and became the standard for many years. Some organizations still reference it, but it's becoming outdated.
WCAG 2.1
WCAG 2.1, published in 2018, is the current standard that most lawsuits and government guidance reference. It includes all of WCAG 2.0 plus additional requirements for mobile accessibility and modern web technologies.
WCAG 3.0
WCAG 3.0 is in development but not yet official. Most requirements currently reference WCAG 2.1.
Conformance Levels: A, AA, and AAA
WCAG has three levels of compliance, each building on the previous level:
Level A (Foundation)
Level A includes the most basic accessibility requirements. It covers fundamental principles like:
- Images have alternative text
- Videos have captions
- Keyboard navigation works
- Color isn't the only way to convey information
Level A is the minimum, but most experts consider it insufficient. It's like building a ramp but not ensuring it's the right slope or width.
Level AA (Standard)
Level AA is the standard most websites should meet. It includes all Level A requirements plus additional requirements for:
- Higher contrast colors (4.5:1 for most text)
- Better labeling of form fields
- Keyboard accessibility with clear focus indicators
- Better error messages and instructions
- Resizable text
Most ADA lawsuits reference WCAG 2.1 Level AA as the standard. Government websites and many private companies are required to meet Level AA.
Level AAA (Enhanced)
Level AAA includes all Level AA requirements plus enhanced features like:
- Even higher color contrast (7:1)
- Sign language interpretation for video content
- Additional support for cognitive disabilities
- More detailed descriptions of images
Level AAA is rarely required and can be impractical in some cases (some color combinations are both AAA-compliant and terrible for readability).
The 4 Main WCAG Principles
All WCAG standards are organized around four principles. Understanding these helps you understand why each requirement exists:
1. Perceivable (Information Must Be Perceivable)
Content must be presented in ways that users can perceive it. This applies to different disabilities:
For people who are blind or low-vision:
- Images need alternative text descriptions
- Videos need audio descriptions
- Websites must work with screen readers (software that reads text aloud)
For people who are deaf or hard of hearing:
- Audio content needs captions
- Videos need transcripts
- Sounds cannot be the only way to convey important information
For people with cognitive disabilities:
- Text must be readable (clear language, good font size)
- Instructions must be clear
- Pages must be well-organized
2. Operable (Users Must Be Able to Navigate and Use Content)
Website functionality must be usable by everyone, including people who can't use a mouse:
Keyboard navigation:
- All functions must be accessible via keyboard
- No keyboard traps (getting stuck in one part of the page)
- Focus indicator shows which element is currently active
- Tab order follows logical sequence
Time-sensitive content:
- Content doesn't disappear or change before users can interact with it
- Users can pause or extend time limits for content
Seizure prevention:
- Nothing flashes more than three times per second (can trigger seizures)
- Animations can be paused or disabled
3. Understandable (Content Must Be Understandable)
Website content and functionality must be understandable:
Readable text:
- Sufficient color contrast between text and background
- Font sizes large enough
- Content organized logically with clear headings
- Language is clear and simple where possible
- Abbreviations are explained
Consistent navigation:
- Navigation works the same way throughout the site
- Form fields work consistently
- Buttons and links are clearly labeled
- Error messages are specific and helpful
4. Robust (Content Must Work with Assistive Technology)
Code must be written correctly so assistive technology can interpret it:
HTML structure:
- Proper heading hierarchy (H1, H2, H3, not just visual sizes)
- Form fields properly labeled
- Buttons and links identified correctly
- Metadata present and correct
- No broken HTML
Compatibility:
- Works with screen readers
- Works with voice control software
- Works with magnification tools
- Works with cognitive accessibility tools
Specific WCAG 2.1 Level AA Requirements Explained
Here are the most important specific requirements websites must meet:
Text Alternatives (Images)
Requirement: All images must have alternative text (alt text) describing them.
Why: People using screen readers can't see images, so alt text tells them what the image shows.
How to implement:
- Simple images: Brief description (e.g., "Golden Retriever running in park")
- Complex images: More detailed description or link to fuller description
- Decorative images: Marked as decorative so screen readers skip them
- Images with text: Include the text in the alt description
Bad example: alt="image" or leaving alt text empty
Good example: alt="Accessibility sign showing wheelchair symbol in blue and white"
Video and Audio Content
Requirement: Videos need captions and transcripts. Audio must have transcripts.
Captions include:
- Dialogue
- Sound effects in brackets: [dog barking]
- Speaker identification: [Sarah] "Good morning"
- Music descriptions: [upbeat piano music]
Why: Deaf and hard of hearing people need to understand audio content.
Color Contrast
Requirement: Text must have sufficient contrast from background (WCAG AA minimum):
- Normal text: 4.5:1 contrast ratio
- Large text (18pt+): 3:1 contrast ratio
What this means:
- Black text on white background: passes
- Gray text on white background: needs to be dark enough gray
- Yellow text on white background: typically fails
- Blue text on dark background: often fails
How to check: Free online contrast checkers available (WebAIM, TPGi, etc.)
Tools: Browser extensions test contrast instantly.
Keyboard Navigation
Requirement: Everything on a website must be usable with a keyboard alone (no mouse).
What must work:
- Links (Enter to activate)
- Buttons (Spacebar or Enter to activate)
- Form fields (Tab to navigate, Enter to submit)
- Dropdowns (Arrow keys to select)
- Modals/popups (Escape to close)
Visual indicator (focus indicator):
- When you tab to an element, it should be clearly visible (outline, highlight, etc.)
- Cannot be removed or hidden
Why: People with motor disabilities, blind users with keyboard, and voice control users all rely on keyboard accessibility.
Form Labels
Requirement: All form fields must be properly labeled.
Good practice:
<label for="email">Email address:</label>
<input type="email" id="email" name="email">
Bad practice:
Email: <input type="email">
Why: Screen readers need to know what each form field is for. Visual proximity isn't enough.
Headings and Structure
Requirement: Pages must use proper heading hierarchy (H1, H2, H3, etc.).
Structure:
- One H1 per page (main title)
- H2s for main sections
- H3s for subsections
- Don't skip levels (don't go from H1 to H3)
- Use semantic HTML, not styling
Why: Screen reader users navigate pages using headings. Proper structure makes content scannable and organized.
Link Text
Requirement: Links must have descriptive text indicating where they go.
Bad examples:
- "Click here"
- "Read more"
- "Link"
Good examples:
- "Learn about WCAG accessibility standards"
- "Read more about our accessibility policy"
- "Download accessibility guide (PDF)"
Why: Screen reader users often navigate by links. Descriptive text tells them what to expect.
Error Messages
Requirement: Form errors must be clearly identified and explained.
Bad error message: "Invalid input"
Good error message: "Email address is invalid. Please use format: name@example.com"
Why: Users with cognitive disabilities need clear explanations to correct errors.
Resize Text
Requirement: Users must be able to enlarge text up to 200% without losing functionality.
What this means:
- Text grows when zoomed
- Pages don't break at larger sizes
- No horizontal scrolling needed
- Buttons remain accessible
Why: Low-vision users often enlarge text. Sites must remain usable when enlarged.
Legal Requirements and Enforcement
ADA Compliance
The Americans with Disabilities Act requires websites to be accessible. Courts have increasingly held that websites must meet WCAG 2.1 Level AA standards.
Where WCAG is Explicitly Required
- Government websites (Section 508): Federal websites must meet WCAG 2.1 Level AA
- Public universities: Often required to meet WCAG 2.1 Level AA
- Websites providing services to people with disabilities: Required to meet WCAG standards
Legal Consequences of Non-Compliance
Lawsuits from disabled individuals can result in:
- Website remediation costs
- Attorney's fees (often $10,000-$100,000+)
- Damages
- Ongoing compliance obligations
Department of Justice investigations for government agencies
State attorney general enforcement for public entities
Business Impact of Non-Compliance
Beyond legal risk:
- Excluded users: Approximately 26% of U.S. adults have disabilities
- Lost sales: People with disabilities control significant purchasing power
- Poor SEO: Many accessibility features also help search engine optimization
- Reputation damage: Public accessibility lawsuits are noticed by customers
Testing for WCAG Compliance
Automated Testing
Tools like:
- WAVE (WebAIM)
- Axe (Deque)
- Lighthouse (Google Chrome built-in)
- NVDA (free screen reader)
- JAWS (paid screen reader)
These catch maybe 30% of issues. Automation can't catch everything.
Manual Testing
Actual humans with and without disabilities should test:
- Keyboard navigation (tab through entire site)
- Screen reader usage (listen to content)
- Color contrast (visual check + tools)
- Mobile accessibility (touch-only navigation)
- Zoom functionality (enlarge to 200%)
Hiring Accessibility Experts
For comprehensive testing:
- Hire certified accessibility consultants
- Conduct user testing with disabled testers
- Get regular accessibility audits
- Consider ongoing accessibility monitoring
Implementation: Where to Start
Immediate Quick Wins (Week 1)
- Add alt text to images
- Fix color contrast on text and buttons
- Add descriptive link text
- Label all form fields
Short-term (Month 1)
- Test keyboard navigation and fix navigation issues
- Add captions to videos
- Improve heading structure
- Fix error messages in forms
Medium-term (Months 2-3)
- Test with screen readers and fix issues
- Ensure zoom works to 200%
- Test on mobile devices
- Create accessibility statement explaining compliance
Long-term (Ongoing)
- Regular accessibility audits
- Staff training on accessibility
- Accessibility in design process for all new features
- User testing with disabled users
Key Takeaways
- WCAG 2.1 Level AA is the current standard that courts reference for ADA compliance
- WCAG has four main principles: Perceivable, Operable, Understandable, Robust
- Specific requirements include: alt text, captions, color contrast, keyboard navigation, proper labeling, and clear error messages
- Non-compliance creates significant legal liability through lawsuits and penalties
- Accessibility benefits everyone, not just disabled users
- Testing requires both automated tools and human review of actual usability
- Starting with quick wins (alt text, contrast) provides immediate improvement
Ensure Your Website Meets WCAG Standards
At OutEasily, we understand that accessibility enables disabled travelers to access travel information independently. We build our platform to meet WCAG 2.1 Level AA standards so that users with disabilities can plan accessible trips confidently. Learn more about OutEasily's commitment to accessibility.
