wayground logo

Free Printable Worksheets

NEW

Font size

S
M
L
XL
Worksheets

Introduction to HTML

Total questions: 10

Worksheet time: 5mins

Name
Class
Date
1.

It is the standard markup language for creating Web pages.

a)

HTML (Hyper Text Markup Language)

b)

Javascript

c)

CSS (Cascading Style Sheets)

d)

HTML tags

2.

These are label pieces of content such as "heading", "paragraph", "table", and so on

a)

HTML (Hyper Text Markup Language)

b)

Web Browsers

c)

HTML elements

d)

HTML tags

3.

HTML tags are element names surrounded by __________.

a)

<angle brackets>

b)

(round brackets)

c)

[square brackets]

d)

(round brackets) and [square brackets]

4.

The start tag is also called the ____________, and the end tag the closing tag.

a)

start tag

b)

beginning tag

c)

new tag

d)

opening tag

5.

The _______________ declaration defines this document to be HTML5

a)

<!DOCTYPE html>

b)

<html>

c)

<head>

d)

<title>

6.

The end tag is written like the start tag, but with a forward slash inserted before the tag name. Which is the following is an example of a correct end tag?

a)

<p>

b)

<p/>

c)

</p>

d)

</p/>

7.

The <p> element defines a ___________.

a)

title

b)

heading

c)

paragraph

d)

page content

8.

The _____ element defines a large heading

a)

<h2>

b)

<h1

c)

<h3>

d)

<h4>

9.
Which of the following will correctly display an image?
a)
<img src="picture.jpg" />
b)
<img href="picture.jpg" />
c)
<img alt="picture.jpg" />
d)
<img http="picture.jpg" />
10.
What is always the last line in an HTML webpage?
a)
<!DOCTYPE html>
b)
<html>
c)
</html>
d)
<title>