We will start this section by looking at how to design a simple web form. Forms must be easy to use and have an organized field layout (first and last name), clear actions (submit your application), and error messages (such as "please provide a username"). The article links to (older pages) examples of form design principles, accessibility, and best practices. Feel free also to browse the most recent articles.
What are web forms?
A web form's HTML is made up of one or more form controls (sometimes called widgets), plus some additional elements to help structure the overall form - they are often referred to as HTML forms.
The controls can be single or multi-line text fields, dropdown boxes,
buttons, checkboxes, or radio buttons, and are mostly created using the <input>
element, although there are some other elements to learn about too.
Form controls can also be programmed to enforce specific formats or values to be entered (form validation), and paired with text labels that describe their purpose to both sighted and visually impaired users.