What does CSS stand for?
Cascading Style Sheets
Computer Style Sheets
Creative Style Sheets
Colorful Style Sheets - answer Cascading Style Sheets
What is the correct HTML for referring to an external style sheet?
<stylesheet>mystyle.css</stylesheet>
<link rel="stylesheet" type="text/css" href="mystyle.css">
<style src="mystyle.css"> - answer <link rel="stylesheet" type="text/css"
Where in an HTML document is the correct place to refer to an external style sheet?
At the end of the document
In the <body> section
In the <head> section - answer In the <head> section
Which HTML tag is used to define an internal style sheet?
<script>
<css>
<style> - answer <style>
Which HTML attribute is used to define inline styles?
font
style
class
styles - answer style
Which is the correct CSS syntax?
body {color: black;}
{body;color:black;}
{body:color=black;}
body:color=black; - answer body {color: black;}
How do you insert a comment in a CSS file?
' this is a comment