Accessibility First

WCAG 2.2 accessibility as a lived discipline

We treat accessibility as stewardship. Whether we are building new services or auditing legacy estates, we evidence every WCAG success criterion so compliance is provable, not promotional.

EB1 guiding inclusive design

Evidence-based delivery

Traceable compliance matrices covering success criteria, user stories, screenshots, and assistive tech notes accompany every release.

Education before execution

Workshops, content style guides, and brown-bag sessions equip your team to maintain accessibility with confidence.

Give before we take

We publish playbooks and code examples openly so partners—and competitors—can raise their own standards.

What WCAG 2.2 covers

WCAG is organised into four principles—Perceivable, Operable, Understandable, Robust. Each principle branches into guidelines with testable success criteria at levels A, AA, and AAA. We align to AA while highlighting AAA opportunities.

  • Perceivable: text alternatives, adaptable layouts, distinguishable contrast.
  • Operable: keyboard access, adequate timing, seizure-safe motion, predictable focus.
  • Understandable: readable copy, consistent navigation, error prevention and recovery.
  • Robust: semantic HTML, accessible name/role/value, reliable interaction with assistive tech.

Landmarks and structure

<!-- Semantic landmarks keep screen reader navigation predictable -->
<body> <header aria-label="Main site header"> <nav aria-label="Primary navigation"> <ul> <li><a href="#services">Services</a></li> <li><a href="#contact">Contact</a></li> </ul> </nav> </header> <main id="services" role="main"> <h1>Accessible Service Catalogue</h1> <p>Every engagement begins with understanding, not assumption.</p> </main> <footer> <p>Contact Akadata Limited — access for everyone.</p> </footer>
</body>
Q&A

Accessibility questions we answer every day

Knowledge base and proofs

Actions speak louder than words. These freely accessible resources keep the wider ecosystem honest and give your team a running start.

WCAG 2 Guidelines – Full Mirror

The entire WCAG 2 corpus is mirrored in this repository under docs/wcag for offline stewardship.

Open resource

Understanding WCAG

Explainers mapped to every success criterion, helping product teams interpret requirements without guesswork.

Open resource

Techniques for WCAG

Step-by-step techniques (HTML, CSS, scripting) for meeting each guideline, referenced during delivery reviews.

Open resource

Accessibility Change Log Template

Interactive template to log success criteria, evidence, owners, and regression risk across releases.

Open resource