-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
461 lines (343 loc) · 16.5 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
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
<!DOCTYPE html>
<html>
<!-- Quiz modified from https://github.com/jdzheng/quiz -->
<head>
<meta charset="utf-8">
<meta name="viewport"content="width=device-width, initial-scale=1">
<title>Where in the Library Should You Study?</title>
<link rel="icon" type="image/png" href="images/favicon-32x32.png" sizes="32x32" />
<link rel="icon" type="image/png" href="images/favicon-16x16.png" sizes="16x16" />
<link href="https://fonts.googleapis.com/css?family=Pangolin:400,700|Proxima+Nova" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="provided-style.css"/>
<link rel="stylesheet" href="style.css"/>
<script src="constants.js" defer="true"></script>
<script src="script.js" defer="true"></script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-2700108-23"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-2700108-23');
</script>
</head>
<body id="body_start">
<article>
<header>
<h1><abbr title="Grand Valley State University">GVSU</abbr> University Libraries</h1>
<div>
<span>WHERE</span>
<span>TO</span>
<span>STUDY</span>
<span>Quiz</span>
</div>
</header>
<h1>Where in the Libraries Should I Study?</h1>
<section class="question-name one" id="one">
<h1>Which animal do you prefer?</h1>
</section>
<section class="choice-grid">
<div data-choice-id="S" data-question-id="one">
<p><img class="checkbox" src="images/unchecked.png"/> Fox</p>
</div>
<div data-choice-id="T" data-question-id="one">
<p><img class="checkbox" src="images/unchecked.png"/> Lizard</p>
</div>
<div data-choice-id="U" data-question-id="one">
<p><img class="checkbox" src="images/unchecked.png"/> Owl</p>
</div>
<div data-choice-id="V" data-question-id="one">
<p><img class="checkbox" src="images/unchecked.png"/> Lion</p>
</div>
<div data-choice-id="W" data-question-id="one">
<p><img class="checkbox" src="images/unchecked.png"/> Squirrel</p>
</div>
<div data-choice-id="X" data-question-id="one">
<p><img class="checkbox" src="images/unchecked.png"/> Monkey</p>
</div>
<div data-choice-id="Y" data-question-id="one">
<p><img class="checkbox" src="images/unchecked.png"/> Wolf</p>
</div>
<div data-choice-id="Z" data-question-id="one">
<p><img class="checkbox" src="images/unchecked.png"/> Bear</p>
</div>
</section>
<section class="question-name two" id="two">
<h1>How would you best describe your personality?</h1>
</section>
<section class="choice-grid">
<div data-choice-id="S" data-question-id="two">
<p><img class="checkbox" src="images/unchecked.png"/> Thoughtful</p>
</div>
<div data-choice-id="T" data-question-id="two">
<p><img class="checkbox" src="images/unchecked.png"/> Caring</p>
</div>
<div data-choice-id="U" data-question-id="two">
<p><img class="checkbox" src="images/unchecked.png"/> Patient</p>
</div>
<div data-choice-id="V" data-question-id="two">
<p><img class="checkbox" src="images/unchecked.png"/> Decisive</p>
</div>
<div data-choice-id="W" data-question-id="two">
<p><img class="checkbox" src="images/unchecked.png"/> Creative</p>
</div>
<div data-choice-id="X" data-question-id="two">
<p><img class="checkbox" src="images/unchecked.png"/> Spunky</p>
</div>
<div data-choice-id="Y" data-question-id="two">
<p><img class="checkbox" src="images/unchecked.png"/> Helpful</p>
</div>
<div data-choice-id="Z" data-question-id="two">
<p><img class="checkbox" src="images/unchecked.png"/> Social</p>
</div>
</section>
<section class="question-name three" id="three">
<h1>What type of movie would you most likely find yourself watching?</h1>
</section>
<section class="choice-grid">
<div data-choice-id="S" data-question-id="three">
<p><img class="checkbox" src="images/unchecked.png"/> Historical</p>
</div>
<div data-choice-id="T" data-question-id="three">
<p><img class="checkbox" src="images/unchecked.png"/> Romantic Comedy</p>
</div>
<div data-choice-id="U" data-question-id="three">
<p><img class="checkbox" src="images/unchecked.png"/> Disney</p>
</div>
<div data-choice-id="V" data-question-id="three">
<p><img class="checkbox" src="images/unchecked.png"/> The Classics</p>
</div>
<div data-choice-id="W" data-question-id="three">
<p><img class="checkbox" src="images/unchecked.png"/> Action</p>
</div>
<div data-choice-id="X" data-question-id="three">
<p><img class="checkbox" src="images/unchecked.png"/> Musical</p>
</div>
<div data-choice-id="Y" data-question-id="three">
<p><img class="checkbox" src="images/unchecked.png"/> Documentary</p>
</div>
<div data-choice-id="Z" data-question-id="three">
<p><img class="checkbox" src="images/unchecked.png"/> Indie Films</p>
</div>
</section>
<section class="question-name four" id="four">
<h1>Which city sounds most appealing to you?</h1>
</section>
<section class="choice-grid">
<div data-choice-id="S" data-question-id="four">
<p><img class="checkbox" src="images/unchecked.png"/> Washington, D.C.</p>
</div>
<div data-choice-id="T" data-question-id="four">
<p><img class="checkbox" src="images/unchecked.png"/> Cleveland, OH</p>
</div>
<div data-choice-id="U" data-question-id="four">
<p><img class="checkbox" src="images/unchecked.png"/> Ogden, UT</p>
</div>
<div data-choice-id="V" data-question-id="four">
<p><img class="checkbox" src="images/unchecked.png"/> Seattle, WA</p>
</div>
<div data-choice-id="W" data-question-id="four">
<p><img class="checkbox" src="images/unchecked.png"/> Detroit, MI</p>
</div>
<div data-choice-id="X" data-question-id="four">
<p><img class="checkbox" src="images/unchecked.png"/> New York City, NY</p>
</div>
<div data-choice-id="Y" data-question-id="four">
<p><img class="checkbox" src="images/unchecked.png"/> Nashville, TN</p>
</div>
<div data-choice-id="Z" data-question-id="four">
<p><img class="checkbox" src="images/unchecked.png"/> Chicago, IL</p>
</div>
</section>
<section class="question-name five" id="five">
<h1>How do you spend most of your spare time?</h1>
</section>
<section class="choice-grid">
<div data-choice-id="S" data-question-id="five">
<p><img class="checkbox" src="images/unchecked.png"/> Reading</p>
</div>
<div data-choice-id="T" data-question-id="five">
<p><img class="checkbox" src="images/unchecked.png"/> Napping</p>
</div>
<div data-choice-id="U" data-question-id="five">
<p><img class="checkbox" src="images/unchecked.png"/> Catching up on TV</p>
</div>
<div data-choice-id="V" data-question-id="five">
<p><img class="checkbox" src="images/unchecked.png"/> What spare time?</p>
</div>
<div data-choice-id="W" data-question-id="five">
<p><img class="checkbox" src="images/unchecked.png"/> Hanging out with friends</p>
</div>
<div data-choice-id="X" data-question-id="five">
<p><img class="checkbox" src="images/unchecked.png"/> Doing something hands-on</p>
</div>
<div data-choice-id="Y" data-question-id="five">
<p><img class="checkbox" src="images/unchecked.png"/> Learning</p>
</div>
<div data-choice-id="Z" data-question-id="five">
<p><img class="checkbox" src="images/unchecked.png"/> Eating</p>
</div>
</section>
<section class="question-name six" id="six">
<h1>What is your favorite time of day?</h1>
</section>
<section class="choice-grid">
<div data-choice-id="S" data-question-id="six">
<p><img class="checkbox" src="images/unchecked.png"/> Mid-morning</p>
</div>
<div data-choice-id="T" data-question-id="six">
<p><img class="checkbox" src="images/unchecked.png"/> Bed time</p>
</div>
<div data-choice-id="U" data-question-id="six">
<p><img class="checkbox" src="images/unchecked.png"/> Early evening</p>
</div>
<div data-choice-id="V" data-question-id="six">
<p><img class="checkbox" src="images/unchecked.png"/> After class</p>
</div>
<div data-choice-id="W" data-question-id="six">
<p><img class="checkbox" src="images/unchecked.png"/> Lunch time</p>
</div>
<div data-choice-id="X" data-question-id="six">
<p><img class="checkbox" src="images/unchecked.png"/> Break of dawn</p>
</div>
<div data-choice-id="Y" data-question-id="six">
<p><img class="checkbox" src="images/unchecked.png"/> Early afternoon</p>
</div>
<div data-choice-id="Z" data-question-id="six">
<p><img class="checkbox" src="images/unchecked.png"/> Noon</p>
</div>
</section>
<section class="question-name seven" id="seven">
<h1>Which of the following best describes your typical morning?</h1>
</section>
<section class="choice-grid">
<div data-choice-id="S" data-question-id="seven">
<p><img class="checkbox" src="images/unchecked.png"/> Peaceful morning meditation</p>
</div>
<div data-choice-id="T" data-question-id="seven">
<p><img class="checkbox" src="images/unchecked.png"/> Checking phone first thing, responding to text messages</p>
</div>
<div data-choice-id="U" data-question-id="seven">
<p><img class="checkbox" src="images/unchecked.png"/> Finally getting up after my fifth alarm</p>
</div>
<div data-choice-id="V" data-question-id="seven">
<p><img class="checkbox" src="images/unchecked.png"/> Up early so I can get my favorite study spot!</p>
</div>
<div data-choice-id="W" data-question-id="seven">
<p><img class="checkbox" src="images/unchecked.png"/> It's different every day!</p>
</div>
<div data-choice-id="X" data-question-id="seven">
<p><img class="checkbox" src="images/unchecked.png"/> Getting up and at it, ready to seize the day!</p>
</div>
<div data-choice-id="Y" data-question-id="seven">
<p><img class="checkbox" src="images/unchecked.png"/> Watching the news and learning what is happening around you</p>
</div>
<div data-choice-id="Z" data-question-id="seven">
<p><img class="checkbox" src="images/unchecked.png"/> Coffee before talkie</p>
</div>
</section>
<section class="question-name eight" id="eight">
<h1>How do you prefer having dinner?</h1>
</section>
<section class="choice-grid">
<div data-choice-id="S" data-question-id="eight">
<p><img class="checkbox" src="images/unchecked.png"/> Somewhere classy</p>
</div>
<div data-choice-id="T" data-question-id="eight">
<p><img class="checkbox" src="images/unchecked.png"/> Something quick and healthy!</p>
</div>
<div data-choice-id="U" data-question-id="eight">
<p><img class="checkbox" src="images/unchecked.png"/> In front of the TV, binge watching my favorite show</p>
</div>
<div data-choice-id="V" data-question-id="eight">
<p><img class="checkbox" src="images/unchecked.png"/> Local farm to table</p>
</div>
<div data-choice-id="W" data-question-id="eight">
<p><img class="checkbox" src="images/unchecked.png"/> With a big group of friends</p>
</div>
<div data-choice-id="X" data-question-id="eight">
<p><img class="checkbox" src="images/unchecked.png"/> Japanese hibachi restaurant</p>
</div>
<div data-choice-id="Y" data-question-id="eight">
<p><img class="checkbox" src="images/unchecked.png"/> Attending campus event and snagging food</p>
</div>
<div data-choice-id="Z" data-question-id="eight">
<p><img class="checkbox" src="images/unchecked.png"/> Bakery-style restaurant</p>
</div>
</section>
<section class="question-name nine" id="nine">
<h1>How would you best describe your life?</h1>
</section>
<section class="choice-grid">
<div data-choice-id="S" data-question-id="nine">
<p><img class="checkbox" src="images/unchecked.png"/> Couldn't be more peaceful</p>
</div>
<div data-choice-id="T" data-question-id="nine">
<p><img class="checkbox" src="images/unchecked.png"/> My Fitbit has a hard time keeping up</p>
</div>
<div data-choice-id="U" data-question-id="nine">
<p><img class="checkbox" src="images/unchecked.png"/> Busy but I wouldn't want anything else</p>
</div>
<div data-choice-id="V" data-question-id="nine">
<p><img class="checkbox" src="images/unchecked.png"/> Busy but I have a clear plan for moving forward</p>
</div>
<div data-choice-id="W" data-question-id="nine">
<p><img class="checkbox" src="images/unchecked.png"/> I haven't really thought about it</p>
</div>
<div data-choice-id="X" data-question-id="nine">
<p><img class="checkbox" src="images/unchecked.png"/> Always changing</p>
</div>
<div data-choice-id="Y" data-question-id="nine">
<p><img class="checkbox" src="images/unchecked.png"/> Perfectly balanced</p>
</div>
<div data-choice-id="Z" data-question-id="nine">
<p><img class="checkbox" src="images/unchecked.png"/> Constantly on the go</p>
</div>
</section>
<section class="question-name ten" id="ten">
<h1>What best describes your weekend?</h1>
</section>
<section class="choice-grid">
<div data-choice-id="S" data-question-id="ten">
<p><img class="checkbox" src="images/unchecked.png"/> Relaxing night in</p>
</div>
<div data-choice-id="T" data-question-id="ten">
<p><img class="checkbox" src="images/unchecked.png"/> Going to the farmer's market</p>
</div>
<div data-choice-id="U" data-question-id="ten">
<p><img class="checkbox" src="images/unchecked.png"/> Sleeping in</p>
</div>
<div data-choice-id="V" data-question-id="ten">
<p><img class="checkbox" src="images/unchecked.png"/> Catching up on the news</p>
</div>
<div data-choice-id="W" data-question-id="ten">
<p><img class="checkbox" src="images/unchecked.png"/> Visiting family</p>
</div>
<div data-choice-id="X" data-question-id="ten">
<p><img class="checkbox" src="images/unchecked.png"/> Finding new adventures</p>
</div>
<div data-choice-id="Y" data-question-id="ten">
<p><img class="checkbox" src="images/unchecked.png"/> Studying</p>
</div>
<div data-choice-id="Z" data-question-id="ten">
<p><img class="checkbox" src="images/unchecked.png"/> Going out to dinner</p>
</div>
</section>
<section class="hidden" id="result">
<div id="title">
</div>
<div id="body">
<div id="bodytext">
<img src="" id="result_img" />
<p></p>
</div>
<div style="clear:both;"></div>
</div>
<div id="restart">
Restart Quiz
</div>
</section>
</article>
<div id="end"></div>
</body>
</html>