wayground logo

Free Printable Worksheets

Font size

S
M
L
XL
Worksheets

YR 8 - CSS - Lesson 2

Total questions: 10

Worksheet time: 5mins

Name
Class
Date
1.

What does CSS stand for?

a)

Cream of Sweetcorn Soup

b)

Class of Styles and Systems

c)

Clicks Sheets Sounds

d)

Cascading Style Sheets

2.

What is CSS used for?

a)

Making websites look pretty

b)

Adding behaviour to a website

c)

Creating structure to a website

d)

It doesn't do anything

3.

Which html <tags> do you put CSS rules between?

a)

<style>

b)

<hr>

c)

<script>

d)

don't know

4.

What brackets do you use with CSS?

a)

{ }

b)

[ ]

c)

( )

d)

< >

5.

What does the rule below do:


h1 {

color: blue;

font-size: 12px;

}

a)

Change the H1 font blue and size to 12 px

b)

Make text blue

c)

Make all text blue and size 12 px

d)

Do nothing

6.

What text properties does CSS allow you to change?

(tick all that apply)

a)

font-family

b)

font-size

c)

colour

d)

alignment

7.

What would the following rule below do?


{ background-color: ghostwhite; }

a)

Changes background colour to blue

b)

Adds a picture to the website

c)

Changes background colour to ghostwhite

d)

Centralises text on the page

8.

What do the rules below do?

(Tick all those that apply)


h1 {

color: blue; font-family: verdana; font-style:italic;

}

a)

Changes text blue

b)

Bolds text

c)

Changes font to Verdana

d)

Makes text Italic

9.

Does CSS allow you to add borders?

a)

Yes

b)

No

10.

What part of the HTML page should we put our CSS script?

a)

<Head>

b)

<Body>

c)

<Foot>

d)

Don't know