| Question | Answer | % Correct |
|---|---|---|
| Controls the appearance the the link while the user is clicking on it. | a:active | 100%
|
| Controls the appearance of the link when the mouse passes over it without clicking. | a:hover | 100%
|
| Controls the default appearance of the link when the page is first loaded. | a:link | 100%
|
| Controls the appearance of the link after a user has clicked on it. | a:visited | 100%
|
| Selects a tag with a custom name that can be used for multiple tags on the page. Preceded by a . (period) symbol. | Class selector | 100%
|
| Which panel allows you to view the structure of your page as a tree of nested tags? | DOM panel | 100%
|
| What submission method will display the information a visitor enters into a form in the URL address box when the Submit button is clicked? | Get | 100%
|
| Selects a tag with a unique name that can't be repeated on the page. Preceded by a # (hashtag) symbol. | ID selector | 100%
|
| What panel allows you to add elements to create an interactive HTML form? | Insert | 100%
|
| How would you correctly insert a new tag inside of the currently selected aside? | Insert Child | 100%
|
| What is the correct format to create a div with an ID of custom? | <div id="custom"> | 100%
|
| Which CSS property allows HTML elements to line up side-by-side horizontally, instead of stacking one above the other? | <float> | 100%
|
| Which tag is used to designate an area of your page as a visual header? | <header> | 100%
|
| The HTML tag that keeps information such as internal and external CSS rules hidden from your site visitors. | <head> | 100%
|
| Attaches an external CSS style sheet to the current page. | <link> | 100%
|
| Wraps around a specific line of text that you want to apply CSS rules to directly. | <span> | 100%
|
| Contains CSS rules that affect only the current page. | <style> | 100%
|
| Which CSS property will center an element in the middle of your page? | margin: auto; | 100%
|
| Given the following conditions, what color will the text inside a h1 be displayed on the page?
•In the linked external style sheet, the color of h1 is set to green.
•In the internal style rules, the color of h1 is set to blue.
•In the body of the document, the h1 tag is wrapped in an inline style which sets the color to red. | Red | 100%
|
| Selects an HTML structural tag, such as the page body or a paragraph. | tag selector | 100%
|