| Form Tags and Attributes |
| <FORM>...</FORM> |
Generates a container for all form elements |
| <FORM action="url"> |
Designates the path of the script to process input from the form |
| <FORM method="get|post"> |
Instructs the browser how to interact with the form URL |
| <FORM accept="media type"> |
Defines which MIME types are supported by the server processing the form |
| <FORM accept-charset="text"> |
Defines which character sets are supported by the server processing the form |
| <FORM enctype="media type"> |
Defines the format of the submitted data |
| <OPTION> |
Defines each menu item |
| <SELECT name="NAME">...</SELECT> |
Generates a pull-down menu |
| <INPUT type="checkbox"> |
Generates a check box |
| <INPUT type="hidden"> |
Conceals a field from view |
| <INPUT type="image"> |
Generates an image that acts like a Submit button |
| <INPUT type="password"> |
Generates a one-line password box |
| <INPUT type="radio"> |
Generates a radio button |
| <INPUT type="text"> |
Generates a one-line text box |
| <INPUT type="submit"> |
Generates a Submit button (send form) |
| <INPUT type="reset"> |
Generates a Reset button (clear form) |