Exam Review Flashcards
How do you build out a table?
How do you build out the initial form tag?
How do you separate sections in a form?
The field set tag
How do you name a section in a form?
The legend tag. name
What consists in an input tag for the hidden form name?
What consists in the input tag for a radio button?
Type = radio / name = “the radio name” / value = “value going to backend” / id “name used for label” / checked (if wanted)
What attribute is used to make a radio button already checked?
Checked
How do you build a drop down list?
With the
What attribute let’s you choose the size of a text field?
Size=“…”
What attribute let’s you choose the maximum length of input in a text field?
Maxlength=“…”
What attribute puts an automatic value that gets sent into backend if not changed in a given space?
Value=“..”
What attribute is used to have an item in drop down box already chosen?
Selected
What attribute is used to put instructional text in a field that has no value of submitted?
Placeholder=“…”
What is the tag for a big text area and how do you format it?
……..
What is the type attribute for checkboxes?
Checkbox
What attribute needs to be the same for all similar groupings?
The name attribute should be the same for all grouped items
What is the type for submit button and how do you choose what the button says?
What is the type for the reset button?
Type=“reset”