defines a file-select field and a "Browse" button for file uploads
Anonymous Quiz
5%
<input type = “date”>
95%
<input type = “file”>
an attribute which specifies that an input field should be preselected when the page loads (for type=”checkbox” or type=”radio”)
Anonymous Quiz
6%
disabled
83%
checked
7%
readonly
3%
pattern
an attribute which specifies that an input field should be disabled
Anonymous Quiz
88%
disabled
3%
checked
7%
readonly
2%
pattern
specifies the maximum number of character for an input field
Anonymous Quiz
34%
max
6%
maximum
15%
maximumlength
44%
maxlength
specifies that an input field is read only (cannot be changed)
Anonymous Quiz
4%
checked
5%
disabled
6%
required
85%
readonly
specifies that an input field is required (must be filled)
Anonymous Quiz
1%
checked
0%
disabled
97%
required
3%
readonly
specifies the legal number intervals for an input field
Anonymous Quiz
2%
min
10%
max
10%
size
78%
step
let a user select ZERO or MORE options of a limited number of choices
Anonymous Quiz
5%
radio button
95%
check box
To define a pre-selected option, add the …. attribute to the option
Anonymous Quiz
15%
select
73%
selected
12%
option
element specifies a list of pre-defined options for an <input> element
Anonymous Quiz
21%
option
11%
select
68%
datalist
Users will see a drop-down list of the pre-defined options as they input data
Anonymous Quiz
23%
option
21%
select
55%
datalist
The list attribute of the <input> element, must refer to the id attribute of the <datalist> element
Anonymous Quiz
92%
T
8%
F
defines a button for submitting the form data to a form-handler
Anonymous Quiz
3%
<input type=”text”>
2%
<input type=”password”>
95%
<input type=”submit”>
0%
<input type=”number”>
The form-handler is typically a file on the server with a script for processing input data
Anonymous Quiz
93%
T
7%
F