CSS 1
CSS 2
CSS 3
CSS 4
CSS 5
100

What does CSS stand for?

What is Cascading Style Sheets?
100

What is the CSS property to change text color?

What is color?
100

What is the CSS property to change the color behind an element?

What is background-color?

100
What does px stand for?

What is pixels?

100

CSS is used to style a webpage, HTML is used to... ?

What is structure a webpage?
200

What goes after a CSS property?

What is a colon (:)?

200

What goes around a CSS style?

What is curly brackets {}?

200

Write CSS to change the font color of your largest headings to red

What is h1{color: red;};

200

What ends a CSS rule?

What is a semicolon (;)?
200

Name two ways to assign color

What is name, RGB, hexadecimal code?

300
External CSS is used for how many webpages?

What is many?

300

Internal CSS is used for how many webpages?

What is one?

300
Inline CSS is used for?
What is styling one element/tag?
300
Where does an internal style sheet go?

What is in the head, in a style tag?

300

How do we link an external stylesheet?

What is <link rel="stylesheet" type="text/css" href="styles.css">?

400
A class can be used how many times per page?
What is many?
400

How many values are in a hex code?

What is six?

400
What does RGB stand for? 

What is red, green, blue? 

400

How would you style using inline CSS?

What is style=""?

400

Write CSS to align everything on a webpage to the middle of the page. 

What is body{text-align: center;}?

500

How do we select a class?

What is a dot or period (.)?

500

What is the property used to change the style (font) of text?

What is a font-family? 

500
Name the three parts of a CSS rule set

What is selector, property, value?

500

A CSS rule set consists of...?

What is a selector and a declaration block?

500

What is the syntax for a CSS comment?

What is /* Your comment */
M
e
n
u