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

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"

โ˜…โ˜…โ˜… High impact

Use real headings 2 minutes

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.

โ˜…โ˜…โ˜… High impact

Add meaningful link text 30 seconds/link

Links should make sense out of context.

Bad: "Click here" or "Read more"

Good: "Download the registration form" or "Read the full accessibility policy"

โ˜…โ˜…โ˜… High impact

Run the accessibility checker 1 minute

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.

โ˜…โ˜…โ˜† Medium impact

Add table headers 1 minute

Tell screen readers which cells are headers.

How: Click in table โ†’ Table Design โ†’ check "Header Row"

โ˜…โ˜…โ˜… High impact

๐ŸŒ Web quick wins

Add a skip link 5 minutes

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; }

โ˜…โ˜…โ˜… High impact

Add alt text to all images 30 seconds/image

<!-- Informative image --> <img src="chart.png" alt="Sales increased 40% in Q4"> <!-- Decorative image --> <img src="decorative-line.png" alt="">

โ˜…โ˜…โ˜… High impact

Ensure visible focus indicators 2 minutes

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; }

โ˜…โ˜…โ˜… High impact

Use buttons for actions, links for navigation Ongoing

<!-- โœ… 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>

โ˜…โ˜…โ˜† Medium impact

Add labels to form fields 1 minute/field

<!-- โœ… Proper label --> <label for="email">Email address</label> <input type="email" id="email" name="email"> <!-- โŒ Missing label --> <input type="email" placeholder="Email">

โ˜…โ˜…โ˜… High impact

Check color contrast 2 minutes

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

โ˜…โ˜…โ˜… High impact

๐ŸŽฅ Video & media quick wins

Enable auto-captions 1 minute

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!

โ˜…โ˜…โ˜… High impact

Say what you're showing During recording

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..."

โ˜…โ˜…โ˜… High impact

Upload transcripts 5 minutes

Auto-captions can generate a transcript. Download and post it.

Benefits: Searchable, scannable, works for deaf-blind users, helps SEO

โ˜…โ˜…โ˜† Medium impact

๐Ÿ“ฑ Social media quick wins

Add alt text to images 30 seconds

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

โ˜…โ˜…โ˜… High impact

Use CamelCase hashtags 2 seconds

Screen readers can read CamelCase hashtags as separate words.

Bad: #accessibilitymatters

Good: #AccessibilityMatters

โ˜…โ˜…โ˜† Medium impact

Add captions to video posts 5-10 minutes

Many people watch videos without sound (85% of Facebook videos are watched muted!).

Tools: CapCut, Kapwing, or built-in platform tools

โ˜…โ˜…โ˜… High impact

Limit emoji use Awareness

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

โ˜…โ˜…โ˜† Medium impact

๐Ÿ“ง Email quick wins

Use descriptive subject lines 10 seconds

Bad: "Important" or "Meeting"

Good: "Action required: Submit grades by Dec 15" or "Wed 3pm: Accessibility Committee meeting agenda"

โ˜…โ˜…โ˜† Medium impact

Use built-in heading styles 1 minute

In Outlook: Format Text โ†’ Styles โ†’ Heading 1, 2, 3

In Gmail: Use the formatting toolbar (it creates semantic HTML)

โ˜…โ˜…โ˜† Medium impact

Add alt text to inline images 30 seconds

Outlook: Right-click image โ†’ Edit Alt Text

โ˜…โ˜…โ˜… High impact

๐ŸŽค Meeting quick wins

Enable live captions 10 seconds

Zoom: Click "Live Transcript" โ†’ Enable

Teams: Turn on "Live captions" in meeting controls

Google Meet: Click CC button

โ˜…โ˜…โ˜… High impact

Share materials in advance 5 minutes before

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

โ˜…โ˜…โ˜† Medium impact

Identify yourself when speaking 2 seconds

Say your name before speaking, especially in large meetings.

Example: "This is Sarah. I have a question about the timeline..."

โ˜…โ˜…โ˜† Medium impact

๐Ÿงช Testing quick wins

Navigate with keyboard only 2 minutes

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?

โ˜…โ˜…โ˜… High impact

Zoom to 200% 30 seconds

Press Ctrl/Cmd + until page is at 200%. Is everything still usable?

  • No horizontal scrolling?
  • Text doesn't overlap?
  • Buttons still clickable?

โ˜…โ˜…โ˜† Medium impact

Run WAVE or axe DevTools 1 minute

Browser extensions that check for common issues.

WAVE: wave.webaim.org/extension

axe DevTools: deque.com/axe/devtools

โ˜…โ˜…โ˜… High impact

๐ŸŽฏ Take the challenge

This week's challenge

  1. Pick 3 quick wins from this page
  2. Implement them today
  3. Share what you did with your team
  4. Come back next week for 3 more

In a month, you'll have made 12+ improvements! ๐ŸŽ‰

Learn more