Head First Html: Chapter 14
9th grade, 10th grade, 11th grade, 12th grade, College: First year, College: Second year, College: Third year, College: Fourth year, Graduate school, Professional
computers, programming languages, html, internet, web, browsers, page design, user interfaces
The _______ element defines the form, and all form input elements are nested inside it
<form>
The _______ attribute contains the URL of the Web Application
action
The _______ attribute contains the method of sending the form data: either POST or GET
method
A _______ packages form data and sends it as part of the request
POST
A _______ packages form data and appends it to the URL
GET
Use GET for requests that might be _______
bookmarked
The _______ element can act as many different input controls on the Web page, depending on the value of its "type" attribute
<input>
An input type of _______ creates a single line text input
"text"
An input type of _______ creates a submit button
"submit"
A input type of _______ creates one radio button. All radio buttons with the same name make up a group of mutually exclusive buttons
"radio"
An input type of _______ creates one checkbox control. You can create a set of choices by giving multiple checkboxes the same name
"checkbox"
A _______ element creates a multi-line text input area
<textarea>
A _______ element creates a menu, which contains one or more <option> elements
<select>
An _______ element defines an item in a menu created using a <select> element
<option>
If you put text into the content of a <textarea> element, it will become the _______ text for that particular control
default
The _______ attribute in the text <input> element can be used to give a single-line text input an initial value
value
Setting the value attribute on a submit button changes the _______ of the button
text
When a Web form is submitted, the form data values are paired with their corresponding names, and all names and values are sent to the _______
server
XHTML allows form elements to be organized with the _______ element
<fieldset>
The _______ element can be used to attach labels to form elements in a way that aids accessibility
<label>