How to Make Online Surveys and Feedback Forms Accessible


You spent hours crafting the perfect customer satisfaction survey. You distributed it to your entire mailing list. But when the results came back, something was missing. An entire segment of your audience — people who use screen readers, people who navigate with keyboards, people with cognitive disabilities — never completed it. Not because they did not want to, but because they could not.

Inaccessible surveys are a hidden data gap that affects businesses, nonprofits, governments, and researchers worldwide. When your survey tool or form design excludes people with disabilities, you lose their voices, their insights, and their perspective. For an estimated 1.3 billion people globally who live with some form of disability, poorly designed surveys are a daily frustration.

This guide walks you through the most common accessibility barriers in online surveys and feedback forms, and shows you how to fix them — no coding experience required.

Why Accessible Surveys Matter

Beyond ethics and inclusion, there are concrete business and legal reasons to care about survey accessibility.

Legal compliance. The European Accessibility Act (EAA), which took effect in June 2025, requires digital services — including online forms and surveys — to meet accessibility standards. The Americans with Disabilities Act (ADA) has been interpreted by U.S. courts to cover websites and digital tools. If your organization collects feedback through inaccessible forms, you may be exposed to legal risk.

Data quality. If 15-20% of your potential respondents cannot complete your survey due to accessibility barriers, your data has a systematic bias. You are missing the perspectives of older adults, people with motor impairments, people with visual disabilities, and many others. Decisions based on this incomplete data may not reflect your actual customer base.

Response rates. Accessible surveys are easier for everyone to use. Clear labels, logical structure, sufficient contrast, and keyboard operability benefit all respondents, not just those with disabilities. Organizations that improve form accessibility typically see higher completion rates across the board.

Common Accessibility Barriers in Surveys

1. Unlabeled Form Fields

This is the most frequent issue. A survey question appears visually next to its input field, but the two are not programmatically connected. When a screen reader user tabs to the input, they hear “edit text” or “combo box” with no indication of what question they are answering.

How to fix it: Ensure every form field has a visible <label> element that is programmatically associated with the input using for and id attributes. Most modern survey tools (Google Forms, Typeform, SurveyMonkey) handle this automatically, but custom-built forms often miss it. If you are using a survey platform, test with a screen reader to verify labels are announced correctly.

2. Inaccessible Rating Scales

Star ratings, slider scales, and emoji-based satisfaction selectors are popular in surveys but frequently inaccessible. A five-star rating displayed as clickable images without text alternatives leaves screen reader users unable to select a rating. Slider controls that respond only to mouse dragging exclude keyboard-only users.

How to fix it: Use radio button groups instead of custom star or emoji widgets. Each option should have a clear text label: “1 - Very dissatisfied,” “2 - Dissatisfied,” and so on. If you must use a visual scale, ensure each option has a text equivalent and can be selected with a keyboard. Many survey platforms offer “linear scale” question types that are implemented as accessible radio groups.

3. Required Fields Without Clear Indication

A form marks certain questions as required, but the only indication is a small red asterisk with no explanation. Color-blind users may not see the red. Screen reader users may not hear the asterisk announced as “required.”

How to fix it: Use the HTML required attribute or aria-required="true" on mandatory fields. Include text like “(required)” in the label, not just a color or symbol. At the top of the survey, explain your convention: “Questions marked with an asterisk (*) are required.”

4. Error Messages That Do Not Identify the Problem

When a respondent submits a form with errors, a generic message appears at the top of the page: “Please fix the errors below.” But the specific fields with errors are not identified, and focus does not move to the first error. A screen reader user has no way to find which question needs attention.

How to fix it: When validation fails, move focus to the first field with an error. Display the error message immediately adjacent to the problematic field. Use aria-describedby to associate the error message with the field so screen readers announce it. Be specific: “Please select a rating for Question 3” is far more helpful than “This field is required.”

5. Poor Color Contrast

Light gray text on a white background, pale placeholder text, or low-contrast buttons make surveys difficult or impossible to read for people with low vision or color blindness. This is especially common in minimalist survey designs that prioritize aesthetics over readability.

How to fix it: Ensure all text meets a minimum contrast ratio of 4.5:1 against its background (3:1 for large text). Use a free tool like the WebAIM Contrast Checker to test your colors. Pay special attention to placeholder text, helper text, and disabled-state styles, which are often the worst offenders.

6. Matrix Questions (Grid Layouts)

Matrix questions — those large grids where rows are statements and columns are response options — are extremely challenging for screen reader users and mobile users alike. The visual layout communicates the relationship between row headers and column headers, but this relationship is often not conveyed programmatically.

How to fix it: If you must use matrix questions, ensure they are built with proper HTML table markup including row and column headers. Better yet, break matrix questions into individual questions, each with its own set of radio buttons. This dramatically improves accessibility and also improves mobile usability. Research shows that breaking matrices into individual questions often improves response quality as well.

7. Time Limits on Survey Completion

Some survey platforms auto-submit or expire surveys after a set time. People who use assistive technology often need more time to navigate forms, read questions with screen readers, or use switch devices to select answers. A strict time limit can make completion impossible.

How to fix it: Remove time limits entirely if possible. If a time limit is necessary (such as for a timed assessment), provide a way to request additional time. Warn users about the time limit before they begin, and give them a warning when time is running low with enough remaining time to save their progress.

8. CAPTCHA and Bot Prevention

CAPTCHA challenges — especially image-based ones — are one of the biggest accessibility barriers on the web. Visual CAPTCHAs are impossible for blind users. Audio CAPTCHAs are often unintelligible. Puzzle CAPTCHAs that require dragging pieces exclude keyboard-only users.

How to fix it: Use invisible CAPTCHA solutions like reCAPTCHA v3 or hCaptcha’s accessibility mode, which verify users through behavior analysis without requiring interaction. Honeypot fields (hidden fields that only bots fill in) are another effective, fully accessible alternative. If you must use a visible CAPTCHA, ensure it offers both visual and audio alternatives and can be completed with a keyboard.

Choosing an Accessible Survey Platform

Not all survey tools are created equal when it comes to accessibility. Here is what to look for:

Google Forms is one of the more accessible free options. It generates proper form labels, supports keyboard navigation, and works reasonably well with screen readers. However, it has limited customization options.

SurveyMonkey has made significant accessibility improvements in recent years and publishes a VPAT (Voluntary Product Accessibility Template) documenting their conformance. Their standard question types are generally accessible, but custom themes can introduce issues.

Microsoft Forms integrates well with assistive technology, particularly Microsoft’s own accessibility tools. It is a strong choice for organizations already in the Microsoft ecosystem.

Typeform’s conversational, one-question-at-a-time format can be easier to navigate, but their heavy use of animations and custom interactions has historically created barriers. Test thoroughly if you choose Typeform.

Regardless of which platform you use, always test your completed survey with at least these methods:

  1. Keyboard-only navigation. Tab through every question without using a mouse. Can you reach and interact with every field? Can you submit the form?
  2. Screen reader testing. Use VoiceOver (Mac/iOS) or NVDA (Windows, free) to navigate the survey. Are all questions announced? Can you understand and select answer options?
  3. Zoom to 200%. Increase your browser zoom to 200%. Does the survey remain usable without horizontal scrolling?

A Quick Checklist for Accessible Surveys

Use this checklist before you publish any survey or feedback form:

  • Every form field has a visible, programmatically associated label
  • Required fields are indicated in the label text, not just by color or symbol
  • Error messages identify the specific field and describe how to fix the error
  • All text meets minimum color contrast requirements (4.5:1 ratio)
  • The entire survey can be completed using only a keyboard
  • Rating scales use radio buttons or other standard controls with text labels
  • Matrix questions are properly structured or broken into individual questions
  • No strict time limits, or users can request additional time
  • CAPTCHA is accessible or replaced with invisible verification
  • Instructions and questions are written in clear, plain language
  • The survey works at 200% browser zoom without horizontal scrolling
  • Progress indicators (if used) are announced to screen readers

What About Paper and Phone Surveys?

Accessibility extends beyond digital forms. If you offer paper surveys, provide them in large print and offer Braille versions on request. For phone surveys, ensure your IVR (Interactive Voice Response) system provides clear audio prompts and does not rely on touch-tone input as the only option. Offering multiple survey channels — online, phone, paper, and in-person — gives the broadest possible access.

The Bottom Line

Making your surveys accessible is not just about checking a compliance box. It is about hearing from everyone. When you remove barriers from your feedback forms, you collect richer data, reach more respondents, and demonstrate that every voice matters to your organization.

Start with the checklist above. Test with a keyboard and a screen reader. Fix the issues you find. Your respondents — all of them — will thank you with more complete, more thoughtful responses.



We’re building a simple accessibility checker for non-developers — no DevTools, no jargon. Join our waitlist to get early access.