1. WHAT DOES HTML STAND FOR?
Hyper Text Makeup Language
Hyperlinks and Text Markup Language
Home Tool Markup Language
Hyper Text Markup Language

2. Who is making the Web standards?
Mozilla
Microsoft
The World Wide Web Consortium
Google

3. Choose the correct HTML element for the largest heading:
<heading>
<head>
<h1>
<h6>

4. HTML comments start with:
<!--
/*
#
</

5. WHAT DOES CSS STAND FOR?
Colorful Style Sheets
Computer Style Sheets
Cascading Style Sheets
Creative Style Sheets

6. Where in an HTML document is the correct place to refer to an external style sheet?
In the <body> section
Anywhere
In the <head> section
At the end of the document

7. Which is the correct CSS syntax?
{body:color=black;}
body {color: black;}
body:color=black;
{body;color:black;}

8. Which CSS property controls the text size?
font-size
font-style
text-style
text-size

9. What is the correct CSS syntax for making all the <p> elements bold?
p {text-size:bold;}
<p style="text-size:bold;">
p {text-weight:bold;}
None of the above

10. How do you select elements with class name "test" in your stylesheet?
*test
.test
test
#test