WD- CSS
what punctuation always follows the property
:
what punctuation mark always follows the value
;
which HTML tag is used to define an internal style sheet?
<style>
CSS stands for
Cascading Style Sheets
CSS describes how these elements are to be displayed on screen
HTML
which property is used to change the background color?
background-color
which is the correct CSS syntax?
body {color: black;}
CSS
cascading style sheets
which CSS property is used to change the text color of an element?
color
h1 {color:blue;} Which part is the declaration
color:blue;
which CSS property controls the text size?
font-size
how do you make the text bold?
font-weight: bold;
h1 {color:blue;} Which part is the selector
h1
how do you add a background color for all <h1> elements?
h1 {background-color: #FFFFFF;}
where in an HTML document is the correct place to refer to an external style sheet?
in the <head> section
what is the correct CSS syntax for making all the <p> elements bold?
p {font-weight:bold;}
(T or F) CSS is a style sheet language that describes the presentation of an HTML document
true