High-impact fixes you can make in minutes.
โก Start making a difference today
Start here, start now
You don't need a big budget or months of training to improve accessibility. These quick wins can be implemented immediately and make a real difference for users with disabilities.
๐ก Pro tip
Pick ONE thing from this list and do it today. Small consistent actions beat grand plans that never happen.
๐ Document quick wins
Add alt text to images
30 seconds/image โ โ โ High impact
Describe what the image conveys, not just what it shows.
How: Right-click image โ Edit Alt Text (Word/PowerPoint/Google Docs)
Example: Instead of "chart" โ "Bar chart showing 40% increase in enrollment from 2020-2024"
Use real headings
2 minutes โ โ โ High impact
Don't just make text big and boldโuse the Heading styles.
How: Select text โ Home โ Styles โ Heading 1, 2, 3...
Why: Screen readers use headings to navigate. Big bold text looks like a heading but isn't "seen" as one.
Add meaningful link text
30 seconds/link โ โ โ High impact
Links should make sense out of context.
Bad: "Click here" or "Read more"
Good: "Download the registration form" or "Read the full accessibility policy"
Run the accessibility checker
1 minute โ โ โ Medium impact
Word, PowerPoint, and Google Docs have built-in checkers.
How: Review โ Check Accessibility (Microsoft) or Tools โ Accessibility (Google)
Fix: Address the issues it finds before sharing your document.
Add table headers
1 minute โ โ โ High impact
Tell screen readers which cells are headers.
How: Click in table โ Table Design โ check "Header Row"
๐ Web quick wins
Add a skip link
5 minutes โ โ โ High impact
Let keyboard users skip navigation and jump to content.
<a href="#main" class="skip-link">Skip to main content</a> ... <main id="main"> /* CSS */ .skip-link { position: absolute; top: -40px; left: 0; padding: 8px; background: #000; color: #fff; } .skip-link:focus { top: 0; }
Add alt text to all images
30 seconds/image โ โ โ High impact
<!-- Informative image --> <img src="chart.png" alt="Sales increased 40% in Q4"> <!-- Decorative image --> <img src="decorative-line.png" alt="">
Ensure visible focus indicators
2 minutes โ โ โ High impact
Never remove focus outlines without adding a replacement!
/* โ Never do this */ *:focus { outline: none; } /* โ
Do this instead */ :focus { outline: 2px solid #005ea2; outline-offset: 2px; }Use buttons for actions, links for navigation
Ongoing โ โ โ Medium impact
<!-- โ
Button for action --> <button onclick="submitForm()">Submit</button> <!-- โ
Link for navigation --> <a href="/about">About us</a> <!-- โ Don't do this --> <a href="#" onclick="submitForm()">Submit</a>Add labels to form fields
1 minute/field โ โ โ High impact
<!-- โ
Proper label --> <label for="email">Email address</label> <input type="email" id="email" name="email"> <!-- โ Missing label --> <input type="email" placeholder="Email">Check color contrast
2 minutes โ โ โ High impact
Text needs 4.5:1 contrast ratio against its background.
Tool: WebAIM Contrast Checker
Common fails: Gray text on white, light blue links, colored text on images
๐ฅ Video & media quick wins
Enable auto-captions
1 minute โ โ โ High impact
YouTube, Zoom, Teams, and Panopto can auto-generate captions.
YouTube: Studio โ Subtitles โ Add โ Auto-generate
Zoom: Enable Live Transcription in meeting settings
Important: Review and edit auto-captions for accuracy!
Say what you're showing
During recording โ โ โ High impact
When presenting, describe what's on screen.
Instead of: "As you can see here..."
Say: "This chart shows enrollment increasing from 5,000 to 7,000 students..."
Upload transcripts
5 minutes โ โ โ Medium impact
Auto-captions can generate a transcript. Download and post it.
Benefits: Searchable, scannable, works for deaf-blind users, helps SEO
๐ฑ Social media quick wins
Add alt text to images
30 seconds โ โ โ High impact
Most platforms now support alt text.
Twitter/X: Click "Add description" when uploading
Instagram: Advanced Settings โ Write Alt Text
LinkedIn: Alt text option when adding image
Use CamelCase hashtags
2 seconds โ โ โ Medium impact
Screen readers can read CamelCase hashtags as separate words.
Bad: #accessibilitymatters
Good: #AccessibilityMatters
Add captions to video posts
5-10 minutes โ โ โ High impact
Many people watch videos without sound (85% of Facebook videos are watched muted!).
Tools: CapCut, Kapwing, or built-in platform tools
Limit emoji use
Awareness โ โ โ Medium impact
Screen readers read each emoji aloud. ๐๐๐๐๐ = "party popper party popper party popper party popper party popper"
Better: Use 1-2 emojis, placed at the end of text
๐ง Email quick wins
Use descriptive subject lines
10 seconds โ โ โ Medium impact
Bad: "Important" or "Meeting"
Good: "Action required: Submit grades by Dec 15" or "Wed 3pm: Accessibility Committee meeting agenda"
Use built-in heading styles
1 minute โ โ โ Medium impact
In Outlook: Format Text โ Styles โ Heading 1, 2, 3
In Gmail: Use the formatting toolbar (it creates semantic HTML)
Add alt text to inline images
30 seconds โ โ โ High impact
Outlook: Right-click image โ Edit Alt Text
๐ค Meeting quick wins
Enable live captions
10 seconds โ โ โ High impact
Zoom: Click "Live Transcript" โ Enable
Teams: Turn on "Live captions" in meeting controls
Google Meet: Click CC button
Share materials in advance
5 minutes before โ โ โ Medium impact
Send slides, agenda, and documents before the meeting. This helps:
- Screen reader users prepare
- People who process information slowly
- Non-native speakers
- Anyone who wants to follow along
Identify yourself when speaking
2 seconds โ โ โ Medium impact
Say your name before speaking, especially in large meetings.
Example: "This is Sarah. I have a question about the timeline..."
๐งช Testing quick wins
Navigate with keyboard only
2 minutes โ โ โ High impact
Tab through your page without using a mouse. Can you:
- Reach all interactive elements?
- See where focus is?
- Get past the navigation to content?
- Open menus and dialogs?
Zoom to 200%
30 seconds โ โ โ Medium impact
Press Ctrl/Cmd + until page is at 200%. Is everything still usable?
- No horizontal scrolling?
- Text doesn't overlap?
- Buttons still clickable?
Run WAVE or axe DevTools
1 minute โ โ โ High impact
Browser extensions that check for common issues.
WAVE: wave.webaim.org/extension
axe DevTools: deque.com/axe/devtools
๐ฏ Take the challenge
This week's challenge
- Pick 3 quick wins from this page
- Implement them today
- Share what you did with your team
- Come back next week for 3 more
In a month, you'll have made 12+ improvements! ๐