This tag creates a form.
<FORM>
Used for single-line text entry.
type="text"
Sends form data.
submit
Used for multi-line text.
<TEXTAREA>
Which method shows data in the URL?
GET
This attribute specifies where form data is sent.
action
Hides typed characters.
type="password"
Clears all form fields.
reset
Creates a dropdown list.
<SELECT>
Which method hides data from the URL?
POST
This attribute determines how data is sent.
method
Allows only one choice in a group.
type="radio"
Generic clickable button.
button
Represents an item inside a dropdown.
<OPTION>
Which input type is best for a login password?
password
This attribute identifies a form.
name
Allows multiple selections.
type="checkbox"
Button that uses a picture.
image
Attribute that sets the default dropdown choice.
selected
Why must radio buttons share the same name?
To belong to the same group.
Why can't forms be nested inside another form?
Because HTML does not allow one form to be placed inside another form.
Used to upload files from a computer.
type="file"
Explain the difference between Submit and Reset.
Submit sends data; Reset clears data.
Name two attributes used in TEXTAREA.
rows and cols
What is the main purpose of HTML forms?
To collect user information.