What kind of training do you actually need?
The right course depends on role and current level.
"Accessibility training" is shorthand for at least five different skill sets. A workshop that teaches alt-text writing to content authors won't fix a React component library; a deep-dive into ARIA won't help a procurement officer write accessibility clauses into contracts. Pick the lane before you pick the course.
-
Designers
Colour contrast, focus indicators, typographic hierarchy, prototyping with assistive tech in mind. The WCAG 2.2 success criteria most relevant to design work are 1.4.3, 1.4.11, 2.4.7, and 1.3.1.
-
Developers
Semantic HTML, ARIA-when-necessary, keyboard handling, automated testing, framework-specific patterns. Run the free WCAG 2.2 scanner on your staging environment before you start — it surfaces the failures your training should target first.
-
Content authors
Alt-text quality (not just presence), heading structure, link-text writing, accessible video and PDF. The shortest useful track in this list — most authors can get to competent in under 10 hours.
-
Legal & procurement
What the law actually requires, how to read an audit report, how to write accessibility into contracts. The relevant background reading is the EAA (Europe, mandatory since June 2025) and ADA Title III (United States, case-law-driven).
-
Cross-cutting (everyone)
How to use a screen reader for testing — see our screen-reader testing tools guide — and a working familiarity with the WCAG 2.2 standard itself. Both belong in everyone's training plan regardless of role.
Self-paced courses
Online, on your own schedule — the bulk of the industry's training.
-
Deque University · online
Web Accessibility Fundamentals
Deque's flagship curriculum: WCAG principles, ARIA in practice, testing with axe, role-based tracks for designers, developers, QA, and content authors. The closest thing to an industry-standard self-paced track.
-
WebAIM · online
WAS prep — Web Accessibility Specialist track
WebAIM's long-form articles are the de-facto reading list for the IAAP WAS certification. The technical depth on contrast, ARIA, and screen-reader behaviour is unmatched. Pair with hands-on practice.
-
W3C / edX · online
Introduction to Web Accessibility (W3Cx)
Run by the W3C Web Accessibility Initiative itself. Covers people, standards, principles, and a tour of WCAG 2.2. The most authoritative free starting point — audit it for nothing or pay for the certificate.
-
Microsoft Learn · online
Accessibility fundamentals
Microsoft's free learning path. Practical, vendor-flavoured (think Office + Windows narrator + Edge devtools) but the principles transfer. A good zero-cost on-ramp before you commit to a paid track.
-
Stanford Online · online
Stanford Online Accessibility Program
University-grade treatment of inclusive design and accessibility engineering. Slower paced than industry courses; better at the "why" than the "what". Useful if you want academic credit alongside the skills.
Instructor-led workshops
Live cohorts, conferences, and bespoke team workshops.
-
Deque Systems · blended
Deque — custom enterprise workshops
Deque delivers tailored training in-house or remote — typically a multi-day curriculum built around the client's stack (React, iOS, Android, design systems). The same instructors run Deque University.
-
Knowbility · blended
AccessU — annual conference + workshops
AccessU is Knowbility's annual training conference. Multiple tracks across role and seniority; a friendly entry point if a multi-day immersive feels more useful than a self-paced track. Sliding-scale tickets.
-
TPGi · online
JAWS for testers (advanced)
TPGi (Vispero, makers of JAWS) run focused workshops on testing with the world's most-used commercial screen reader. Advanced — assumes you already know what a landmark, live region, and virtual cursor are.
Certification paths
Useful for hiring signals; not a substitute for hands-on skill.
The dominant certifications come from the International Association of Accessibility Professionals (IAAP):
- IAAP CPACC — Certified Professional in Accessibility Core Competencies. Foundational, role-agnostic. The right entry-level credential for designers, project managers, and policy people who need to prove general literacy.
- IAAP WAS — Web Accessibility Specialist. Technical, harder, code-heavy. The right credential for developers and accessibility engineers; covers WCAG, ARIA, and assistive-tech behaviour in depth.
- IAAP CPABE — Certified Professional in Accessible Built Environments. Manager-level credential oriented at organisational programme leadership.
- W3C / WAI certificates — the "Introduction to Web Accessibility" course on edX awards an optional paid certificate from W3Cx; useful as a study milestone, less recognised by hiring managers than IAAP.
Be honest with yourself: certifications are useful as hiring signals and for contracting (procurement teams sometimes require them), less so as proof of capability. A portfolio of remediation work outranks a CPACC every time.
Free resources to start tomorrow
No purchase decision required.
- WebAIM articles — the most-cited working library on the web. Start with their contrast, alt-text, and screen-reader pages.
- MDN accessibility guides — Mozilla's reference docs. Best for developers who want the spec-anchored answer to a specific question.
- W3C WAI tutorials — official W3C training material on images, forms, tables, carousels, and page structure. Free and authoritative.
- NVDA documentation — the user guide for the free Windows screen reader most developers test with. Skim it before you start testing.
- ARIA Authoring Practices Guide — the W3C reference for accessible widget patterns (combobox, menu, tabs). Read it before you reach for ARIA.
- Disability World glossary — every term in this page, defined: WCAG, ARIA, CPACC, EAA, and ~120 more. Free and continuously updated.
- WCAG 2.2 success criteria — our walkthrough of every WCAG 2.2 criterion with examples.
Custom team training
For orgs that want delivered-in-house, codebase-specific training.
If you want training delivered for a full engineering or design team — custom curriculum, integrated with your codebase, run by an instructor who can answer questions about your actual stack — the recommended path is to engage a specialist firm. Pricing is per-engagement (typically five to six figures, depending on team size, duration, and depth) and outcomes depend heavily on the client's willingness to remediate alongside the training.
Established options in 2026:
- Deque — the largest pure-play accessibility consultancy. Run the Deque University curriculum; deliver enterprise workshops in most major frameworks.
- Level Access — full-service accessibility programme (audits + training + remediation support); strong on procurement and policy.
- Knowbility — non-profit; runs the annual AccessU training conference and offers cohort-based and bespoke workshops. Sliding-scale.
Frequently asked questions
The questions that come up before every training-budget decision.
What's the best free accessibility training?
W3Cx — "Introduction to Web Accessibility" on edX — is the most authoritative free starting point. WebAIM's articles are the best free deep-dive, and Microsoft Learn's accessibility fundamentals path is the fastest zero-cost on-ramp. All three are linked above.
Do I need an IAAP certification?
For most working roles, no — capability matters more than the badge. Certifications (CPACC, WAS, CPABE) are useful as hiring signals, for contract work where a procurement team requires proof of competence, or if you want a structured study path. They are not a substitute for hands-on testing with assistive tech.
How long does it take to become competent in accessibility?
For a working developer: a few weeks of focused study to reach "knows the basics, doesn't actively make things worse"; 3–6 months of regular practice (audits + remediation + testing with NVDA or VoiceOver) to reach independent competence; 1–2 years before you can confidently lead a remediation programme. Accessibility expertise is a craft, not a one-day workshop achievement.
What training do my developers need?
Start with semantic HTML and keyboard handling — that's 60–70% of WCAG. Then ARIA-when-necessary (and ONLY when necessary), automated testing with axe-core or Lighthouse, and framework-specific patterns for whatever you ship in (React, Vue, Angular). Deque University's developer track or the WebAIM WAS reading list covers all of this.
Should we hire trainers or buy course access?
For under ~30 people, buy course access (Deque University, WebAIM) and supplement with a half-day workshop. For larger orgs or for codebase-specific remediation, the in-house workshop pays off — a Deque, Level Access, or Knowbility engagement gives your team training rooted in your actual code and design system.
Is Disability World training certified?
Disability World is an editorial site — we curate training paths, we don't (currently) sell training as a product. For certifications use IAAP (CPACC, WAS, CPABE); for delivered-in-house training, the firms named above are the established options.
Three ways to start
-
Free · 5 minutes
Start with the glossary
Skim the Disability World glossary — every term in this page, defined. The cheapest possible way to find your level.
-
Free · ~4 weeks
Enroll in a free course
The W3Cx "Introduction to Web Accessibility" track is free to audit and the most authoritative starting point for designers and developers.
-
For teams
Book custom team training
For codebase-specific in-house workshops, reach out to Deque, Level Access, or Knowbility. See all community resources for related programmes.