Term
|
Definition
The _ element defines the form, and all form input elements are nested inside it. |
|
|
Term
|
Definition
The action attribute contains the _ of the Web Application |
|
|
Term
|
Definition
The method attribute contains the method of sending the form data: either _ or_ |
|
|
Term
|
Definition
A _ packages form data and appends it as part of the request |
|
|
Term
|
Definition
A _ packages form data and appends it to the URL |
|
|
Term
|
Definition
Use POST when the form data should be private, or when it is large, such as when a _ or file_ element is used |
|
|
Term
|
Definition
Use _ for requests that might be bookmarked |
|
|
Term
|
Definition
The _ element can act as many different input controls on the Web page, depending on the value of its "type" attribute |
|
|
Term
|
Definition
A type of _ creates a single line text input |
|
|
Term
|
Definition
A type of _ creates a submit button |
|
|
Term
|
Definition
A type of _ creates one radio button. All radio buttons with the same name make up a group of mutually exclusive buttons. |
|
|
Term
|
Definition
A type of _ creates one checkbox control. You can create a set of choices by giving multiple checkboxes the same name. |
|
|
Term
|
Definition
A _ element creates a multi-line text input area. |
|
|
Term
|
Definition
A _ element creates a menu, which contains one or more OPTION elements. OPTION elements define elements define the items in the menu. |
|
|
Term
|
Definition
If you out text into the content of a _ element, it will become the default text in a text area control on the Web page. |
|
|
Term
|
Definition
The value attribute in the text _ element can be used to give a single-line text input an initial value. |
|
|
Term
|
Definition
Setting the _ attribute on a submit button changes the text of the button |
|
|
Term
|
Definition
When a Web form is _, the form data values are paired with thier corresponding names, and all names and values are sent to the server. |
|
|
Term
|
Definition
Tables are often used to layout _, given that forms have tabular structure. Once laid out, CSS should be used to style forms to provide the presentation, including color, font styles,etc. |
|
|
Term
|
Definition
XHTML allows form elements to be organized with the _ element. |
|
|
Term
|
Definition
The _ element can be used to attach labels to form elements in a way that aids accessibility. |
|
|