Forms
A form is an area that can contain form elements.
Form elements are elements that allow the user to enter information (like text fields, textarea fields, drop-down menus, radio buttons, checkboxes, etc.) in a form.
A form is defined with the
Last name:
Note that the form itself is not visible. Also note that in most browsers, the width of the text field is 20 characters by default.
Radio Buttons
Radio Buttons are used when you want the user to select one of a limited number of choices.
| Male Female |
How it looks in a browser:
Female
Note that only one option can be chosen.
Checkboxes
Checkboxes are used when you want the user to select one or more options of a limited number of choices.
| I have a bike: I have a car: I have an airplane: |
How it looks in a browser:
I have a car:
I have an airplane:
The Form's Action Attribute and the Submit Button
When the user clicks on the "Submit" button, the content of the form is sent to another file. The form's action attribute defines the name of the file to send the content to. The file defined in the action attribute usually does something with the received input.
| Username: |
How it looks in a browser:
If you type some characters in the text field above, and click the "Submit" button, you will send your input to a page called "html_form_action.asp". That page will show you the received input.
Form Tags
| Tag | Description |
|---|---|
| Defines a form for user input | |
| Defines an input field | |
| Defines a text-area (a multi-line text input control) | |
| Defines a label to a control | |
| Defines a fieldset | |
| Defines a caption for a fieldset | |
| Defines a selectable list (a drop-down box) | |
| Defines an option group | |
| Defines an option in the drop-down box | |
| Defines a push button | |
| Deprecated. Use instead |
