If you have more than one property for a CSS selector, what character separates them?
; (semicolon)
What does CSS stand for?
What is wrong with this code?
body {color=black;}
Should have : instead of =
What is the value in this CSS code?
p {color: red;}
red
How are rule sets closed?
; semicolon
Where in the Html document is the correct location to insert code to link to your external CSS?
In the <head> section
What symbol goes around each CSS selector?
{ }
What is the property in this CSS code?
p {font-size: 10px;}
font-size
Where can you find your style sheet?
Left side of screen; style.css
What is the selector in this code?
img {width: 100px;}
img
What is the correct way to format a font family for a paragraph?
p {font-family: Cursive;}
What is the selector for a link (hyperlink)?
a { }
This code is correct (True or False):
body {background-color="red"'}
How are numbers measured in CSS code?
pixels, px
Give 2 examples of a border-style.
dotted, double, solid, dashed
This CSS code is correct (True or False).
a {color: blue;}
True
Using CSS, how would you center text?
{text-align: center;}
This code is correct (True or False):
link {color: blue;}
False
What is the purpose of the float property?
Aligns an image (right, left, none)
Give 3 examples of a font-family.
cursive, monospace, fantasy, serif, sans-serif
How do you remove the underline from a hyperlink using CSS?
a {text-decoration: none;}
What is the code for a comment in CSS?
/*comment*/
How do you link your CSS to your HTML page?
<link rel="stylesheet" href="style.css">
What does RGB stand for?
Red, Green, Blue
How many colors can be made using RGB?
Over 16 million