wayground logo

Free Printable Worksheets

Font size

S
M
L
XL
Worksheets

HTML Basics_EEBA

Total questions: 21

Worksheet time: 21mins

Name
Class
Date
1.

What tag starts and ends an unordered list?

a)

<p> </p>

b)

<ol> </ol>

c)

<ul> </ul>

d)

<h1> </h1>

2.

What is the biggest heading tags?

a)

<p> </p>

b)

<h6> </h6>

c)

<ul> </ul>

d)

<h1> </h1>

3.

What tags start and end a paragraph tag?

a)

<p> </p>

b)

<h6> </h6>

c)

<ul> </ul>

d)

<h1> </h1>

4.

What tag starts and ends a list?

a)

<p> </p>

b)

<ol> </ol>

c)

<ul> </ul>

d)

<li> </li>

5.

Which of the following tags are in the <head>

a)

<p>

b)

<body>

c)

<footer>

d)

<title>

6.

You should save HTML files with which file extension?

a)

.htm

b)

.index

c)

.webpage

d)

.html

7.

HTML stands for...

a)

Hyper Text Markup Language

b)

High Tech Marking Language

c)

High Tech Modem Language

d)

Hyper Tech Markup Lexicon

8.

Which character is used to create an end or closing tag?

a)

*

b)

>

c)

<

d)

/

9.

The ____ tag creates a paragraph.

a)

<pr>

b)

<p>

c)

<para>

d)

<par>

10.

What is the command tag "HTML Images"

a)

<img src="img.jpg">

b)

<img url="img.jpg">

c)

<img ="img.jpg">

d)

<img href="img.jpg">

11.

To save the first file, Which is correct?

a)

File name: index.co.th

b)

File name: index.com

c)

File name: index.html

d)

File name: index.notepad

12.

Which of the following tags are the last tag on a html document

a)

<end>

b)

</body>

c)

</footer>

d)

</html>

13.

</body>

a)

Body tag

b)

Paragraph tag

c)

Closing body tag

d)

Header tag

14.

The information to be displayed in the document must be inside the container:

a)

<title>...</title>

b)

<img>

c)

<body>...</body>

d)

<br>

15.

What is the correct syntax to change the background color with css?

a)

background-color: purple;

b)

backgroundcolor=orange

c)

background-color = "purple";

d)

change-background-color: purple

16.

What is missing from this HTML skeleton?

<!DOCTYPE html>

<html>

<body>

</body>

</html>

a)

<head></head>

b)

<div></div>

c)

<img></img>

d)

<head>

17.

Which is correct CSS syntax?


a)

{body; colour = black;}

b)

body: colour = black

c)

body {

colour : black;}

d)

{body colour is black}

18.

What tag do you use to create a numbered list?

a)

<list>

b)

<ol>

c)

<li>

d)

<ul>

19.

Select the rule to make all the text in your web page blue and centered.

a)

p {

colour: blue; }

b)

body {

text-align: left;

colour: blue; }

c)

p {

text-align: center

color: blue; }

d)

body {

text-align: center

color: blue; }

20.

Name an element which does not have a closing tag.

a)

<img>

b)

<head>

c)

<body>

d)

<p>

21.

Where should you put the link tag to connect your CSS and HTML file?

a)

Between the <body> </body> in HTML

b)

Between the <head> </head> in HTML

c)

None of them