Accessibility Topics
Accessible Forms
Making Accessible HTML Forms
- Making Interactive Forms Accessible
- 508 Guidelines
- Place labels adjacent to input fields, not in separate table cells , or
- If the form label and input element are in separate cells
or areas, use an "explicit label" with the "for" attribute
- Use <label for="fname">First Name</label> and
- Use the id attribute (id="fname") within form input element, e.g., <input type="text" name="fname" id="fname">
- 508 Guidelines
- Interactive Form Example
