Accessibility is not just compliance — it is good design. This checklist covers the WCAG 2.2 guidelines that every website should meet.
Over 1 billion people worldwide live with some form of disability. Accessible websites reach a larger audience, improve SEO, reduce legal risk, and provide better UX for everyone.
Content must be presentable to users in ways they can perceive.
alt text (or alt="" for decorative images)<!-- Good: descriptive alt text -->
<img src="chart.png" alt="Bar chart showing 40% increase in organic traffic from January to March 2026" />
<!-- Good: decorative image -->
<img src="divider.svg" alt="" role="presentation" />Dr Urls checks contrast ratios, alt text, and more during accessibility audits. Try free.
Check your siteUsers must be able to operate the interface regardless of input method.
prefers-reduced-motion@media (prefers-reduced-motion: reduce) {
*, *::before, *::after {
animation-duration: 0.01ms !important;
transition-duration: 0.01ms !important;
}
}<html lang="en"><nav>, <main>, <article>, <button><button> is always better than a <div role="button">.Want to see how your site stacks up? Run a free audit now.
Check your site<label>aria-describedby<label for="email">Email address</label>
<input
type="email"
id="email"
name="email"
required
autocomplete="email"
aria-describedby="email-error"
/>
<p id="email-error" role="alert" class="error">
Please enter a valid email address.
</p>Run a comprehensive audit across SEO, security, performance, and accessibility. No sign-up required.
Check your website