CIS 421Accessibility › Form Accessibility

Accessibility in web Forms

Resources

WebAIM tutorial on accessible forms

Set up Dreamweaver (Edit>Preferences>Accessibilty) to prompt for accessibility information whenever you create a form or a form element.

When you create a new form element, Dreamweaver will ask for:

Form with form label for accessibility

The HTML code for this checkbox is:

<form id="form1" name="form1" method="post" action="">
<p>
<label for="email">Sign up for email</label>
<input type="checkbox" name="email" id="email"/>
</p>
</form>

top

10 Sharp Design on Form Accessibility

This more advanced tutorial even tells you how to indicate which fields are required. See
http://www.10sharpdesign.com/accessibility/forms/4-required-fields.html

This tutorial also includes valuable tips to make forms more usable as well as more accessible.
http://www.10sharpdesign.com/accessibility/forms/9j-usability.html

top