wayground logo

Free Printable Worksheets

Font size

S
M
L
XL
Worksheets

Intro to CSS

Total questions: 10

Worksheet time: 5mins

Name
Class
Date
1.

Websites are made using which coding languages? (You can select multiple answers)

a)

HTML

b)

CSS

c)

Javascript

d)

Python

2.

What language is responsible for the basic structure and format of the website?

a)

HTML

b)

CSS

c)

Javascript

d)

Python

3.

Which language is responsible for the "style" of the website? (This includes colors, fonts, and positioning)

a)

HTML

b)

CSS

c)

Javascript

d)

Python

4.

What symbol do we use for our declarations in CSS?

a)

( )

Parenthesis

b)

" "

Quotation Marks

c)

{ }

Brackets

d)

< >

Chevrons

5.

True or False.

CSS can control the layout of multiple web pages all at once.

a)

True

b)

False

6.

True or False.

CSS is an external file that needs to be linked to from the HTML document.

a)

True

b)

False

7.

True or False. Each CSS selector can only have one declaration.

a)

True

b)

False

8.

Which of the following statements about CSS is FALSE?

a)

The selector points to the HTML element you want to style.

b)

The declaration block contains one or more declarations separated by semicolons.

c)

Each declaration includes a CSS property name and a value, separated by a colon.

d)

CSS can only affect one HTML tag at a time.

9.

Fill in the blank. Multiple CSS declarations are separated with _ .

a)

,

Commas

b)

;

Semicolons

c)

< >

Chevrons

d)

" "

Quotation Marks

10.

Which option is the proper way to write CSS?

a)

h1 (color="blue";)

b)

h1 {color:blue;}

c)

h1 <color=blue>

d)

h1 = {blue;}