forked from galvanizejs/prep-week2-project1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
150 lines (102 loc) · 2.78 KB
/
index.html
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="description" content="155 characters of call to action">
<title>JS Exercises - Variables, Operators, & Conditions</title>
<link href="https://cdnjs.cloudflare.com/ajax/libs/normalize/4.2.0/normalize.min.css" rel="stylesheet" type="text/css" />
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<header>
<h1 class="center">JS Exercises</h1>
<h2 class="center">Variables, Operators, & Conditions</h2>
</header>
<main>
<h2>Question 1:</h2>
<p>Status of JS page Connected: <span id="q1" class="status-bad">NOT connected properly</span>
</p>
<hr>
<h2>Question 2:</h2>
<p><span id="q2"></span>
</p>
<hr>
<h2>Question 3:</h2>
<p><span id="q3"></span>
</p>
<hr>
<h2>Question 4:</h2>
<p><span id="q4a"></span>
</p>
<p><span id="q4b"></span>
</p>
<p><span id="q4c"></span>
</p>
<p><span id="q4d"></span>
</p>
<hr>
<h2>Question 5:</h2>
<p><span id="q5"></span>
</p>
<hr>
<h2>Question 6:</h2>
<p><span id="q6a"></span>
</p>
<p><span id="q6b"></span>
</p>
<p><span id="q6c"></span>
</p>
<p><span id="q6d"></span>
</p>
<p><span id="q6note"></span>
</p>
<hr>
<h2>Question 7:</h2>
<button id="callAlert">Call Alert</button>
<p><span id="q7"></span>
</p>
<hr>
<h2>Question 8:</h2>
<form name="question8">
<p>Enter a number to double:</p>
<input id="doubleNum" type="text">
</form>
<button id="callDoubleNum">Double Number</button>
<p>The Doubled Value is: <span id="q8"></span>
</p>
<hr>
<h2>Question 9:</h2>
<p><span id="q9"></span>
</p>
<hr>
<h2>Question 10:</h2>
<p><span id="q10"></span>
</p>
<hr>
<hr>
<h2 class="center">Advanced: </h2>
<hr>
<hr>
<h2>Question A:</h2>
<p><span id="qa"></span>
</p>
<hr>
<h2>Question B:</h2>
<p><span id="qb"></span>
<hr>
<h2>Question C:</h2>
<p><span id="qc"></span>
</p>
<hr>
<h2>Question D:</h2>
<!-- Add Form Code Here -->
<p><span id="qd"></span>
</p>
<hr>
<h2>Question E:</h2>
<!-- Add Form Code Here -->
<p><span id="qe"></span></p>
<hr>
</main>
</body>
</html>