What does the DOCTYPE tell the browser?
Which version of HTML we're using
Does the <hr> tag have a closing tag?
No
The <a> tag is used to create what?
Hyperlink
The selector defines what?
Which HTML element the rule applies to
The <p> tag is used for what?
The paragraph of text
The title is displayed where?
The top of the web browser
What is the <hr> tag used for?
Create a horizontal line on the screen
Which tag do we enter the attributes?
The opening
This is an attribute that we can add to HTML tags in order to style a specific group of elements.
Class
The <em> tag is used for what?
Within which tag will most of your HTML tags go?
<body>
Which tag is used for a line break?
<br>
What are the 2 types of lists that we've used?
Ordered and Unordered
The class is preceded by a what? The id is preceded by what?
. and #
The <strong> tag is used for what?
Bold text
We use _________ to show the structure of the tags.
Indenting
The <h1> tag determines what?
The size of the heading
When using multiple styles for one tag, they must be separated by what?
Semicolon
Class names and ID's can not have ________ or start with a _______.
spaces; number
The <li> tag is used for what?
Each list item
The structure of an HTML document is a _______.
Tree
What are nesting tags?
The combination of multiple tags for one item
Which 3 formats are used to add color to a web page?
Valid color name
RGB
Hexadecimal
True or false: According to the cascade, rules written earlier wins over rules written later.
False
*Double points if answered correctly* Which 4 tags do we use when creating a table?
<table>
<tr>
<th>
<td>