wayground logo

Free Printable Worksheets

NEW

Font size

S
M
L
XL
Worksheets

HTML basic

Total questions: 20

Worksheet time: 10mins

Name
Class
Date
1.
What does HTML stand for?
a)
Hypertext Making Language
b)
Hyper Transfer Markup Language
c)
Hypertext Markup Language
d)
Hyper Transfer Making Language
2.

HTML controls the _________ of a webpage.

a)

feel

b)

precision

c)

structure

d)

style

3.
HTML Language uses
a)
Tabs
b)
Tags
c)
Punctuation
d)
Quotations
4.

Which character is used to indicate an end tag?

a)

!

b)

#

c)

/

d)

\

5.

What tag should every HTML document start with?

a)

<head>

b)

<!DOCTYPE>

c)

<html>

d)

<DOCTYPE>

6.

<h1> is an example of a _______.

a)

Headline Tag

b)

Paragraph Tag

c)

filename

7.
</p> is
a)
punctuation tag
b)
closing paragraph tag
c)
closing punctuation tag
d)
paragraph tag
8.

Choose the correct HTML element for the largest heading:

a)

<head>

b)

<h1>

c)

<heading>

d)

<h6>

9.

What defines the beginning and ending of the visible part of a webpage?

a)

<html> main part of the document </html>

b)

<body> main part of the document </html>

c)

</body> main part of the document <html>

d)

<body> main part of the document </body>

10.

Which is the proper way to write an h1 tag

a)

<h1>Hello</h1>

b)

<h1>"Hello

c)

{h1}Hello{/h1}

d)

<h1>Hello<h1>

11.

src attribute in an image tag means what?

a)

Source of the image

b)

Name of the image

c)

Description of the image

d)

Not used with image tag

12.

Which list tag would you use for an ordered list

a)

<h1></h1>

b)

<ol></ol>

c)

<ul></ul>

d)

<a></a>

13.

You need a closing tag for an image without text

a)

True

b)

False

14.

What will be the output for the following code?

<html>

<body>

<i> I am bold </i>

</body>

</html>

a)

I am bold

b)

I am bold

c)

<I am Bold>

d)

<I am Bold>

15.

What is the value in the below code?

<p align="center"> this is a simple paragraph only </p>

a)

<p>

b)

align

c)

"center"

d)

</p>

16.

What are the attributes in the code below?

<img src="images/1.jpg" height="300px" width="500px">

a)

<img>

b)

src, height, width

c)

"images/1.jpg", "300px", "500px"

d)

none

17.

What attribute can we use to set the background for <body>?

a)

bgcolor

b)

background

c)

bgcolor and background

d)

color

18.

What's wrong with the code?

<!DOCTYPE html>

<html>

<head>

<title> Shopping list <title>

</head>

<body>

<h1 align="center">My shopping list</h1>

</html>

a)

the code is correct

b)

the tags <title> should be between <body></body> tags

c)

tag <title> is not closed

19.

What is the font size in this code: <p style=“color:blue; background-color:yellow;

font-size:60px”>Hello</p>

a)

20pixles

b)

40pixels

c)

50pixels

d)

60pixels

20.

When working with color codes RGB stands for...

a)

Green Red Purple

b)

Red Great Blue

c)

Red Green Blue

d)

Blue Green Raspberry