The next several exercises are timed. If you type slowly or dislike time pressure, feel free to increase the allotted time.
Name and email required. Check any number of boxes.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19
0
0
0
What does DOM stand for? | Document Object Model | ^ *(D|d)ocument (O|o)bject (M|m)odel *$ | |
In one word, what creates the DOM? | browser | ^ *browser *$ | |
The DOM is an ___________ chart for a document. | organization | ^ *organization *$ | |
A company's organization chart is made up of people. The DOM is made up of ______. | nodes | ^ *nodes *$ | |
5. Drag-and-drop: Holding down the left mouse button, drag the pieces of code onto the screen toarrange the nodes in the correct hierarchy. | The correct order is html, document, head, body. | ||
Reading from left to right, which nodes are one level below html? Name each with one word. Don't include brackets. | head body | head`body | |
What node is above html? | document | ||
The three types of nodes are document, element, and _____ | text | ^ *text *$ | |
The three types of nodes are document, ______, and text. | element | ^ *element[s]? *$ | |
The three types of nodes are ________, element, and text. | document | ^ *document *$ | |
The top element node is <html>. What are the two element nodes below that? Include the brackets. Separate them with a space. | <head> <body> | ^ *(GeorgeStumpheadLarryWells *JudyOwensbodyDennisLeadbetter|PeterKannbodyMartinQuinn *HowardShermanheadJamieHindman) *$ | |
What type of node are <div> and <p>? Answer with one word. | element | ^ *element *$ | |
What node is above html? | document | ^ *document *$ | |
The three types of nodes are document, element, and _____ | text | ^ *text *$ | |
The three types of nodes are document, ______, and text. | element | ^ *element[s]? *$ | |
The three types of nodes are ________, element, and text. | document | ^ *document *$ | |
The top element node is <html>. What are the two element nodes below that? Include the brackets. Separate them with a space. | <head> <body> | ^ *(GeorgeStumpheadLarryWells *JudyOwensbodyDennisLeadbetter|PeterKannbodyMartinQuinn *HowardShermanheadJamieHindman) *$ | |
What type of node are <div> and <p>? Answer with one word. | element | ^ *element *$ | |
http://jsfiddle.net/ASmarterWayToLearn/g6q4cyhf/ | |||
http://jsfiddle.net/ASmarterWayToLearn/95eysmfL/ |