Exam Review Flashcards

1
Q

How do you build out a table?

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

How do you build out the initial form tag?

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

How do you separate sections in a form?

A

The field set tag

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

How do you name a section in a form?

A

The legend tag. name

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

What consists in an input tag for the hidden form name?

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

What consists in the input tag for a radio button?

A

Type = radio / name = “the radio name” / value = “value going to backend” / id “name used for label” / checked (if wanted)

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

What attribute is used to make a radio button already checked?

A

Checked

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

How do you build a drop down list?

A

With the

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

What attribute let’s you choose the size of a text field?

A

Size=“…”

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

What attribute let’s you choose the maximum length of input in a text field?

A

Maxlength=“…”

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

What attribute puts an automatic value that gets sent into backend if not changed in a given space?

A

Value=“..”

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

What attribute is used to have an item in drop down box already chosen?

A

Selected

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

What attribute is used to put instructional text in a field that has no value of submitted?

A

Placeholder=“…”

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

What is the tag for a big text area and how do you format it?

A

……..

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

What is the type attribute for checkboxes?

A

Checkbox

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

What attribute needs to be the same for all similar groupings?

A

The name attribute should be the same for all grouped items

17
Q

What is the type for submit button and how do you choose what the button says?

A
18
Q

What is the type for the reset button?

A

Type=“reset”