HTML Forms Flashcards

1
Q

What do forms allow us to do?

A

collect info from users

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What are form controls?

A

elements that are used to construct a form

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What is a form processor?

A

program used to process forms. browser sends form to processor

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What is a form data set?

A

A collection of name value pairs.
“name” is the element attribute
“value” is provided by the user

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What is a successful control?

A

A control that has both a name and value at the time of submission

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What are the two form methods?

A

Get and Post

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

“Get” form method

A

used for forms that may be accessed by the user later

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

“Post” form method

A

used when data should not be accessed later, or for long strings of text.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

<label></label>

A

labels new control element

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

<input></input>

A

allows user to input text

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

name attribute

A

links label to input

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

type attribute

A

identifies the type of form control (text input, radio buttons, etc)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

value attribute

A

controls the button’s text (exclusive to type=”submit”

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q
A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly