| A | B |
| <form> | Needed to tell the browser this is a form |
| <input> | Used to create an input control |
| Radio Button | used when only 1 choice is allowed |
| Checkbox | the user is allowed to select more than one choice |
| <fieldset></fieldset> | used to group like controls in a form |
| textarea | used to create a larger area for the user to type in input |
| multiple | the attribute that allows more than one selection in a select menu |
| size | attribute used to control how long a text box is on the page |
| <select></select> | used to create a menu for the user to choose from |
| type="password" | a text input control that displays the contents as asterisks |
| name | the attribute that ALL tags used for input controls should have |
| value | the attribute that only data input controls should have |
| <legend></legend> | used to give a name to each group in a form |
| tabindex | an attribute used to set the order of how the fields are tabbed |
| <option></option> | used for each choice a user has in a select menu |
| selected | an attribute used to preselect a choice in a select menu |
| checked | an attribute used to preselect a radio button |
| type="submit" | a control that tells the browser to send the data on the form |
| type="reset" | a control that returns all input controls to their default status |
| action | attribute that says what action is taken when the form is submitted |