input element
select element
option element
attribute that allows the user to select more than one value in <select> element</select>
multiple attribute
textarea element
attribute that specifies the visible width of a text area.
cols attribute
attribute that specifies the visible number of lines in a text area.
rows attribute
button element
What will happen when you click this button?:
button type=”button” onclick=”alert(‘Hello World!’)”>
Click Me!</button
After clicking the button a message box will appear
used to group related data in a
form.
fieldset element
defines a caption for the <fieldset>
element.
legend element
datalist element
defines a single-line text input field
input type=”text”
defines password field
input type=”password”
input type=”submit”
typically a server page with a script for processing input data
form-handler
defines a reset button that will reset all form values to their default values
input type=”reset”
TRUE OR FALSE:
Radio buttons let a user select ONLY ONE
of a limited number of choices:
TRUE
input type=”radio”
input type=”checkbox”
lets a user select zero or more options of a limted number of choices
Checkbox
defines a button
input type=”button”
used for input fields that should contain a color
input type=”color”
used for input fields that should contain a date
input type=”date”