-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
62 lines (53 loc) · 1.83 KB
/
index.html
File metadata and controls
62 lines (53 loc) · 1.83 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
54
55
56
57
58
59
60
61
62
<!DOCTYPE html>
<html>
<head>
<meta chartset="UTF-8" name="viewport" content="width=device-width" />
<link rel="stylesheet" href="./css/dh-quiz-main.css" />
<script src="./js/libs/charting-library__chartist.min.js"></script>
<script src="./js/libs/chartist-plugin__axistitle.min.js"></script>
<script src="./js/libs/chartist-plugin_chartist-logaxis.umd.js"></script>
<script src="./js/libs/equation-notation-converter__ascii-to-tex.js"></script>
<script src="./js/libs/latex-renderer__katex.min.js"></script>
<script src="./js/equation-list.js"></script>
<script src="./js/quiz-list.js"></script>
<script src="./js/html-quiz-templates.js"></script>
<script src="./js/global-methods.js"></script>
<script src="./js/quiz-logic.js"></script>
<script src="./js/plot-generator.js"></script>
</head>
<body
class="bg"
onresize=""
style="
background-image: linear-gradient(rgb(139, 207, 13), white);
z-index: -1;
"
onload="State.setActivePage(0)"
>
<br class="pkShowWhenSmall" id="pkSmallBreak" />
<!-- Tabs -->
<div id="pkContainerMobileMenu">
<button class="pkShowWhenSmall" id="pkButtonMobileMenu">
<span class="arrowSideBtn"></span>
</button>
<div class="pkShowWhenSmall" id="pkMobileMenu"></div>
</div>
<div id="title-div" class="w3-center">Question 1</div>
<div class="flex pkShowWhenLarge" id="pkDesktopNavbar"></div>
<br />
<div class="pkBodyContainer">
<div></div>
<div class="w3-card-2 w3-white mainCard">
<div class="pkContainerQuizDiv" id="pkContainerQuiz"></div>
</div>
<div></div>
</div>
<button
type="menu"
id="QuizID"
style="display: none;"
value="pkMDMD"
></button>
<script defer src="./js/quiz-generator.js"></script>
</body>
</html>