WorksheetsYR 8 - CSS - Lesson 2
Total questions: 10
Worksheet time: 5mins
What does CSS stand for?
Cream of Sweetcorn Soup
Class of Styles and Systems
Clicks Sheets Sounds
Cascading Style Sheets
What is CSS used for?
Making websites look pretty
Adding behaviour to a website
Creating structure to a website
It doesn't do anything
Which html <tags> do you put CSS rules between?
<style>
<hr>
<script>
don't know
What brackets do you use with CSS?
{ }
[ ]
( )
< >
What does the rule below do:
h1 {
color: blue;
font-size: 12px;
}
Change the H1 font blue and size to 12 px
Make text blue
Make all text blue and size 12 px
Do nothing
What text properties does CSS allow you to change?
(tick all that apply)
font-family
font-size
colour
alignment
What would the following rule below do?
{ background-color: ghostwhite; }
Changes background colour to blue
Adds a picture to the website
Changes background colour to ghostwhite
Centralises text on the page
What do the rules below do?
(Tick all those that apply)
h1 {
color: blue; font-family: verdana; font-style:italic;
}
Changes text blue
Bolds text
Changes font to Verdana
Makes text Italic
Does CSS allow you to add borders?
Yes
No
What part of the HTML page should we put our CSS script?
<Head>
<Body>
<Foot>
Don't know
