Scan a site
ABCDEFGHIJKLMNOPQRSTUVWXYZ
Accessibility

WCAG (Web Content Accessibility Guidelines)

Published: · Updated:

WCAG (Web Content Accessibility Guidelines) is the W3C's international standard for making web content accessible to people with disabilities — visual, auditory, motor and cognitive. The current version, WCAG 2.2, was published as a W3C Recommendation in October 2023.

The standard rests on four principles (POUR): content must be perceivable, operable, understandable and robust. Each principle expands into guidelines and measurable success criteria at three conformance levels: A (minimum), AA (the market and legal standard) and AAA (the highest).

Why WCAG conformance matters

  • Law: the European Accessibility Act (from June 2025) and national laws require level AA for e-commerce, banking and digital services.
  • Reach: according to the WHO, over a billion people live with a disability — an inaccessible site excludes real customers.
  • Quality: WCAG practices (semantic HTML, contrast, keyboard support) improve UX and SEO for everyone.

How to audit conformance

Automated tests (e.g. axe-core) typically detect 30–40% of issues — the rest must be verified manually: with keyboard navigation, a screen reader and content review. A mature process combines automated audits in CI with periodic manual testing.

Example

Two criteria often checked first — alternative text for images (SC 1.1.1) and a logical heading hierarchy (SC 1.3.1).

SC 1.1.1 — informative image description
HTML
<img src="/team.jpg" alt="The CometWeb team in a meeting at the office">
SC 1.3.1 — heading hierarchy without skipped levels
HTML
<main>
  <h1>CometWeb Insight pricing</h1>
  <section>
    <h2>Monthly plans</h2>
    <h3>Starter plan</h3>
  </section>
</main>

Which WCAG level is legally required?

In the European Union and most jurisdictions the reference point is level AA — required by the European Accessibility Act, the EN 301 549 standard and US case law around the ADA.

Sources & further reading

Check your site accessibility

Insight runs automated tests for selected WCAG-based accessibility rules and ranks detected issues by priority.

No credit card Report with date and sources No account required