wayground logo

Free Printable Worksheets

Font size

S
M
L
XL
Worksheets

ITAA Unit 4: CSS

Total questions: 10

Worksheet time: 13mins

Name
Class
Date
1.

What will this CSS expression do? p {color: red ;}

a)

Color all paragraph text red.

b)

Color only text with an ID of 'p'.

c)

Paste a new paragraph on your page that is red.

2.

What does CSS stand for?  (a)  

Choose from the below words
Creative Style Sheets
Cascading Style Sheets
Colorful Style Spread
Computer Style Spread
3.

Which is correct CSS syntax?  (a)  

Choose from the below words
{ body; color=black;}
body: color= black
body {color:black;}
(body color is black) 
4.

What symbols go around the properties for each CSS declaration? (a)  

Choose from the below words
< >
[ ]
{ }
( )
5.
What is the difference between HTML and CSS?
a)
CSS is one type of HTML
b)
HTML gives a webpage structure. CSS provides styling.
c)
CSS structures a webpage. HTML strictly provides styling.
d)
There is no difference.
6.

You've made a page with several headings, tagged <h1>. You desire ONLY ONE of these headings to be a different color. It's best to use an (a)  

Choose from the below words
ID
<style> tag
<h1>
CLASS
7.

You've made a page with several headings, tagged <h1>. You desire TWO of these headings to be a unique color. It's best to use a (a)  

Choose from the below words
ID
<style> tag
<h1>
CLASS
8.

Your CSS 'code' is placed (a)   .

Choose from the below words
Inside the <body> tags.
At the very top of your HTML.
Inside the <head> tags.
Inside the <CSS> tags.
9.

To write ANY CSS, you need to enclose all of it inside of a (a)  

Choose from the below words
<HTML> tag.
<style> tag.
<body> tag.
10.

One method of creating a color in CSS is by using the RGB model (a)   If your color numbers are (0, 255, 0) the color will be (b)  

Choose from the below words
Green
Yellow
Pink
Blue