Intro to CSS coding
What Punctuation Marks go around the DECLARATION?
"Curly Braces" Surround the Declaration
What does CSS stand for?
Cascading Style Sheets
What is the Proper Syntax for CSS coding
SELECTOR {property:value}
In the CSS code: body {color: blue} color is called the ________________
THE PROPERTY COLOR is the PROPERTY of the HTML ELEMENT (body) you want to change.
In the CSS code: body {color: blue} body is called the ________________.
THE SELECTOR It SELECTS the HTML ELEMENT (body) you want to change.
In the CSS code: body {color: blue} black is called the ________________
THE VALUE BLACK is the VALUE you will give the PROPERTY
How do you insert a comment that will not appear in the browser in a CSS file?
put comment between a set of double back slashes ex: // this is a comment //
What Punctuation Mark goes between the Property and the Value
A "Colon" Goes Between the Property and the Value.
What is a DECLARATION ?
A Declaration is a PROPERTY and a VALUE
What is a SELECTOR
A SELECTOR is the HTML Element you want to give a style NOTE: the SELECTOR does not have the right and left caret <body>