-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
87 lines (77 loc) · 2.94 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
<!-- naturalization quiz app :) -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Citizenship Practice</title>
<link rel="icon" href="/assets/icon.ico">
<link rel="stylesheet" href="src/citizen.css">
</head>
<body>
<div id="mainwrap">
<div id="main">
<h1 id="mainhead">citizenship quiz</h1>
<button id="mainbutton" onclick="StartGame()">play</button>
<p id="built">built by <a href="https://mustaeen.dev/"
target="_blank" id="builtLink">
must
</a>
</p>
</div>
</div>
<div id="menuwrap">
<div id="infomenu">
<h1>welcome!</h1>
<p id="p1">
this test is designed to simulate the naturalization civics test.
you will answer 10 questions related to u.s. history and government.
</p>
<p id="p-2">
while the original test completes when you answer 6 questions right, you
will answer all 10 in this quiz, to be better prepared for the test.
</p>
<p id="p-3">
the answers for this quiz were last updated on 12/19/2023, and are based on
the UCF area.
</p>
<p id="weight1">good luck!</p>
<button id="realstart" onclick="startQuiz()">start</button>
</div>
</div>
<div id="quizcol">
<div id="quizwrapper">
<h1 id="question"></h1>
<form autocomplete="off">
<input type="text" id="input" placeholder="type your answer here!"><br>
<button id="q-button">submit</button>
<button id="q-button" type="button" onclick="Questioning()">skip</button>
</form>
<p id="status"></p>
<div id="pagination">
<div data-question="1" class="">1</div>
<div data-question="2" class="">2</div>
<div data-question="3" class="">3</div>
<div data-question="4" class="">4</div>
<div data-question="5" class="">5</div>
<div data-question="6" class="">6</div>
<div data-question="7" class="">7</div>
<div data-question="8" class="">8</div>
<div data-question="9" class="">9</div>
<div data-question="10" class="">10</div>
</div>
</div>
</div>
<div id="gameend">
<div id="gameendbox">
<h1 id="endhead">you finished!</h1>
<p id="p-1"></p>
<p id="p-2"></p>
<button id="end-b-1" onclick="goAgain()">try again?</button>
<button id="end-b-2" onclick="startMenu()">to start</button>
</div>
</div>
<script src="src/citizen.js" ></script>
<script src="src/animation.js" ></script>
</body>
</html>