What does CSS stand for?
What is the CSS property to change text color?
What is the CSS property to change the color behind an element?
What is background-color?
What is pixels?
CSS is used to style a webpage, HTML is used to... ?
What goes after a CSS property?
What is a colon (:)?
What goes around a CSS style?
What is curly brackets {}?
Write CSS to change the font color of your largest headings to red
What is h1{color: red;};
What ends a CSS rule?
Name two ways to assign color
What is name, RGB, hexadecimal code?
What is many?
Internal CSS is used for how many webpages?
What is one?
What is in the head, in a style tag?
How do we link an external stylesheet?
What is <link rel="stylesheet" type="text/css" href="styles.css">?
How many values are in a hex code?
What is six?
What is red, green, blue?
How would you style using inline CSS?
What is style=""?
Write CSS to align everything on a webpage to the middle of the page.
What is body{text-align: center;}?
How do we select a class?
What is a dot or period (.)?
What is the property used to change the style (font) of text?
What is a font-family?
What is selector, property, value?
A CSS rule set consists of...?
What is a selector and a declaration block?
What is the syntax for a CSS comment?