wayground logo

Free Printable Worksheets

Font size

S
M
L
XL
Worksheets

HTML & CSS Quiz Review ICS

Total questions: 26

Worksheet time: 13mins

Name
Class
Date
1.
What does HTML Stand for?
a)
HyperText Makeup Language
b)
HyperText Markup Language
c)
HyperType Markup Language
d)
HighText Markup Language
2.
How is CSS different from HTML?
a)
CSS is a programming language, while HTML is a markup language.
b)
CSS is used for adding interactivity, while HTML is used for structure.
c)
CSS is used for styling and formatting, while HTML is used for content
d)
CSS is used for server-side programming, while HTML is used for client-side programming.
3.
What does CSS Stand for?
a)
Certain Styles Selected
b)
Certain Style Sandwiches
c)
Central Servicing Systems
d)
Cascading Style Sheets
4.

< p > are used to code______.

a)
headers
b)
page
c)
paragraph
d)
hyperlink
5.
Which tag is used to insert an image?
a)

< p >

b)

< h1 >

c)

< img >

d)

< li >

6.

What does < li > stand for?

a)
list item
b)
last item
c)
lost item
d)
lazy item
7.
Which tag is used to indicate the largest heading?
a)

< h1 >

b)

< h2 >

c)

< h3 >

d)

< h6 >

8.
How do you close a HTML tag?
a)
< >
b)

< \ >

c)
{ }
d)

< / >

9.

What does a < ol > tag do?

a)
Inserts a space between text
b)
Creates a link to a webpage
c)
Starts a Bulleted List
d)
Starts a Numbered List
10.

Does the < li > tag need to have an end tag?

a)
Yes
b)
No
c)
Maybe
11.

Where are the < html > and < / html > tags used?

a)

< html > at the beginning. < /html > at the end.

b)

< /html > at the beginning. < html > at the end.

c)
Both go at the beginning of the document.
d)
Both go at the end of the document.
12.

What is the < ul > used for?

a)
Displays the Title of a webpage
b)
Used to create large text
c)
Starts a bulleted list
d)

Used to remove a < li >

  • from a webpage.

13.

How does a HTML page start?

a)

< @ DOCTYPE html >

b)

< ? DOCTYPE html >

c)

< ! DOCTYPE html >

d)

< / DOCTYPE html >

14.
Write the following items in a unordered list in HTML: red, orange, yellow, blue.
a)

< ol >

< li > red < / li >

< li > orange < / li >

< li > yellow < / li >

< li > blue < / li >

< / ol >

b)

< ul >

< li > red < / li >

< li > orange < / li >

< li > yellow < / li >

< li > blue < / li >

< / ul >

c)

< li > red < / li >

< li > orange < / li >

< li > yellow < / li >

< li > blue < / li >

d)

< ul >

red

orange

yellow

blue

< / ul >

15.
Write the following items in a ordered list (steps for brushing your teeth) in HTML: brush your teeth, put tooth paste on tooth brush, rinse your tooth brush, spit in the sink
a)

< ol >

< li > brush your teeth < / li >

< li > put tooth paste on tooth brush < / li >

< li > rinse your tooth brush < / li >

< li > spit in the sink < / li >

< / ol >

b)

< ul >

< li > brush your teeth < / li >

< li > put tooth paste on tooth brush < / li >

< li > rinse your tooth brush < / li >

< li > spit in the sink < / li >

< / ul >

c)

< li > brush your teeth < / li >

< li > put tooth paste on tooth brush < / li >

< li > rinse your tooth brush < / li >

< li > spit in the sink < / li >

d)

< ol >

  1. 1. brush your teeth

  2. 2. put tooth paste on tooth brush

  3. 3. rinse your tooth brush

  4. 4. spit in the sink

< / ol >

16.

What is the error in this line of HTML?

< / p > Hello < p >

a)

The elements should be:

< paragraph >

b)

The elements should be: < / > Hello < p / >

c)

The elements should be:

< p > Hello < / p >

17.
All visible content (when you click run) on your webpage has to go inside what tag?
a)

< head >

b)

< body >

c)

< vis >

d)

< p >

18.
When HTML code is red everything is correct.
a)
True
b)
False
19.
CSS Rule Sets must be enclose in:
a)
{ }
b)
[ ]
c)
< >
d)
" "
20.
To change the size of all h3 text on a page, which one of these would you use?
a)
h3 {font-family: big;}
b)
h3 {font-weight: 600;}
c)
h3 {font-size: 25px;}
21.
Which of the following CSS Rule Sets would the web page background color be set in?
a)
p { }
b)
head { }
c)
h1 { }
d)
body { }
23.
When this symbol " / " is used in a tag it is to close it.
a)
True
b)
False
24.
What is the correct HTML element for inserting a line break?
a)
<lb>
b)
<br>
c)
<break>
d)
<bk>
25.

Which HTML tag is used to create a hyperlink?

a)

< a >

b)

< url >

c)

< link >

d)

< href >

26.

What is the correct CSS property to change the text color?

a)

color

b)

background-color

c)

text-color

d)

font-color