NEW
Font size
WorksheetsHTML5 Forms
Total questions: 10
Worksheet time: 5mins
What is the correct HTML for making a checkbox?
<checkbox>
<input type="checkbox">
<check>
<input type="check">
What is the correct HTML for making a text input field?
<input type="textfield">
<textinput type="text">
<textfield>
<input type="text">
What is the correct HTML for making a drop-down list?
<list>
<input type="dropdown">
<input type="list">
<select>
What is the correct HTML for making a text area?
<input type="textbox">
<input type="textarea">
<textarea>
In HTML, which attribute is used to specify that an input field must be filled out?
required
validate
formvalidate
placeholder
Which of the following defines the caption to a <fieldset> tag?
<legend>
<h1>
<caption>
<label>
The action attribute tells the form:
How to send the form's data
Where to send the form's data
When to send the form's data
<input type="submit" name="submit" id="submit" />
The code above creates a reset button.
True
False
The viewer never sees the transfer of data when the form uses <form method="get">.
True
False
Checkbox buttons let users select one or more of a particular set of choices
True
False
