ClaudeChatGPTDeveloper & CodeIntermediate
Web Accessibility (WCAG Checklist)
Audit your website against WCAG 2.1 guidelines with actionable fixes for screen readers, keyboard navigation, and color contrast.
Updated June 2026
When to Use
Before launching a website or app
During periodic accessibility audits
When receiving feedback from users with disabilities
To comply with legal requirements (Brazilian Inclusion Law, ADA)
How to Use This Prompt
1
Copy the prompt below into Claude or ChatGPT
2
Describe the site/app or paste HTML snippets
3
Receive the complete audit with corrections
4
Implement the corrections by priority
Example Input
Type: E-commerce (product listing + checkout) Stack: React + Tailwind CSS Known issues: buttons without labels, images without alt, form difficult with screen reader
Expected Output
**Critical issue 1 — Button without label:** <!-- BEFORE (inaccessible) --> <button class="bg-blue-500 p-2" onclick="addToCart(id)"> <svg>...</svg> </button> <!-- AFTER (accessible) --> <button class="bg-blue-500 p-2" onclick="addToCart(id)" aria-label="Add Basic T-Shirt to cart" > <svg aria-hidden="true">...</svg> </button> **Critical issue 2 — Image without alt:** <!-- BEFORE --> <img src="product.jpg" /> <!-- AFTER --> <img src="product.jpg" alt="White basic cotton t-shirt, unisex model, front view" /> **Tools:** axe DevTools, WAVE, Lighthouse (Accessibility), NVDA (free screen reader).