What does HTML stand for?
HyperText Markup Language
. (dot)
Which CSS theory states when there are two rules both using the same selector and the same property the one farther down the list will win?
Cascade
What is the tag used to represent a numbered list?
<ol>
What color will the main paragraph text be in the following example?
body p { font-size: 20pt; color: red; }
body p { font-size: 14pt; font-weight: normal; }
.boldly p { font-style: italic; color: blue; font-weight: bold; }
Red
Elements that create objects, apply formatting, identify content, & generate interactivity are what?
Tags
What symbol represents a CSS id?
# (hash)
Which CSS theory states when you define a rule for a parent it gets passed down to its children?
Inheritance
What is the tag that represents a hyperlink?
<a>
What is the HTML tag for a line break?
<br>
What category of tags stands alone and forces other elements onto a new line?
Block Elements
What are the two main benefits of CSS? (Explain your answer.)
Consistency & Efficiency
What CSS theory defines a selector by the parent-child relationship of the element you want to style?
Descendant
What is the proper way to write a closing body tag?
</body>
What is the proper way of writing a CSS rule for paragraph text you want to be 12pt and purple?
p { font-size: 12pt; color: purple; }
What category of tags perform their duties within the flow of another tag?
Inline Elements
What is the combination of a CSS property and its value called?
Declaration
What CSS theory states that the most precise rule will be the one that gets applied?
Specificity
What is the following an example of: ®
HTML Entity (registered trademark)
How would you write the code for a bulleted list with 3 items in it?
<ul>
<li>...</li>
<li>...</li>
<li>...</li>
</ul>
What category of tags does its work in the background out of sight of the user?
Structural Elements
What are the three parts of a CSS rule?
selector { property: value; }
What CSS theory is represented by the following code: article h2 { font-family: Arial; font-size: 24pt; color: #999; color: green; }
What three things can define the characteristics of HTML tags?
HTML Defaults, Inline Styles, & CSS
What is the proper way to write a comment tag?
<!-- ... -->