-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdom-1.html
More file actions
53 lines (53 loc) · 1.17 KB
/
dom-1.html
File metadata and controls
53 lines (53 loc) · 1.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>:: d ~ o ~ m assessment WoRkShEeT ::</title>
<style>
body {
padding: 5em;
}
hr {
margin: 5em 0;
}
</style>
</head>
<body>
<div id="deep-in-the-heart">The stars at night are big and bright. . . .</div>
<hr>
<div id="what-color" style="color: firebrick">What color am I?</div>
<div id="answer-color"></div>
<hr>
<label for="tacoBoutIt">Tell me what kind of taco you like to get:</label><input type="text" name="tacoBoutIt" id="tacoBoutIt"><button id="tacoButton">Taco Bout It!</button>
<div>I like to get <span id="favorite-taco">*replaceMe*</span> when I order tacos</div>
<hr>
States we're from:
<ul id="list-states">
<li class="state-list-item">California</li>
<li class="state-list-item">Texas</li>
<li class="state-list-item">Mississippi</li>
</ul>
<div>Here's one of the states we're from: <span id="insert-state"></span></div>
<hr>
<h3>Delayed message:</h3>
<div id="five-seconds"></div>
<script src="dom_assessment_worksheet.js"></script>
</body>
</html>