wayground logo

Free Printable Worksheets

NEW

Font size

S
M
L
XL
Worksheets

HTML5 Forms

Total questions: 10

Worksheet time: 5mins

Name
Class
Date
1.

What is the correct HTML for making a checkbox?

a)

<checkbox>

b)

<input type="checkbox">

c)

<check>

d)

<input type="check">

2.

What is the correct HTML for making a text input field?

a)

<input type="textfield">

b)

<textinput type="text">

c)

<textfield>

d)

<input type="text">

3.

What is the correct HTML for making a drop-down list?

a)

<list>

b)

<input type="dropdown">

c)

<input type="list">

d)

<select>

4.

What is the correct HTML for making a text area?

a)

<input type="textbox">

b)

<input type="textarea">

c)

<textarea>

5.

In HTML, which attribute is used to specify that an input field must be filled out?

a)

required

b)

validate

c)

formvalidate

d)

placeholder

6.

Which of the following defines the caption to a <fieldset> tag?

a)

<legend>

b)

<h1>

c)

<caption>

d)

<label>

7.

The action attribute tells the form:

a)

How to send the form's data

b)

Where to send the form's data

c)

When to send the form's data

8.

<input type="submit" name="submit" id="submit" />


The code above creates a reset button.

a)

True

b)

False

9.

The viewer never sees the transfer of data when the form uses <form method="get">.

a)

True

b)

False

10.

Checkbox buttons let users select one or more of a particular set of choices

a)

True

b)

False