What is the CSS to center all <h1> headings using a width 80%? - ANSWER h1{margin:
auto; width:80%}
Which HTML tag is used to define an internal style sheet? - ANSWER <style>
How do insert a comment in CSS? - ANSWER /*this is a comment*/
Which property is used to change the background color? - ANSWER background-color:
What is the correct HTML for referring to an external style sheet? - ANSWER <link
rel="stylesheet" type="text/css" href="mystyle.css">
How do you add a background color to all <h1> elements? - ANSWER h1{background-
color:#FFFFFF}
What is the code to change the text color of an element? - ANSWER color:
Where in an HTML document is the correct place to refer to an external style sheet? -
ANSWER <head> section
What CSS property controls the text size? - ANSWER font-size:
What is the correct CSS syntax for making all the <p> elements bold? - ANSWER
p{font-weight: bold}
What is the inline style to make an element centered? - ANSWER style="text-align:
center"
Choose the correct HTML tag for the largest heading. - ANSWER <h1>
What are the 3 ways to insert CSS into your HTML document? - ANSWER Internal,
External, Inline
What symbol has to start an ID tag in CSS? - ANSWER #
What does CSS stand for? - ANSWER Cascading Style Sheet
What symbol has to start a class tag in CSS? - ANSWER .(period)
What does HTML stand for? - ANSWER Hyper Text Markup Language
What is the tag for inserting a break line? - ANSWER <br>
What is the correct code to add red as the background color? - ANSWER <body
style="background-color: red">