CS 1030 W7
How do you select an element with Id demo
#demo
how do you center the text in all <p> tags?
p {text-align: center;}
What is the correct HTML for bringing in an external style sheet?
<link rel="stylesheet" type="text/css" href="mystyle.css">
What HTML tag is used to define an internal style sheet?
<style>
What does CSS stand for
Cascading Style Sheets
What property is used to change the background color?
background-color
What is a correct CSS syntax?
body { color: black }
Where in a HTML document is the correct place to refer to an external style sheet?
in the <head> section
which html attribute is used to define inline styles?
style
How do you make every letter start with an uppercase?
text-transform: uppercase;