-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
108 lines (102 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Math Trainer</title>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Azeret+Mono:[email protected]&family=VT323&display=swap"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css2?family=Inter+Tight:[email protected]&display=swap"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css"
/>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div id="main-container">
<div id="title-wrapper">
<h1 id="title">mathTrainer()</h1>
<span class="blinker">_</span>
</div>
<h4 id="a-project-by">
a
<a id="project-by-link" href="https://boxkat.github.io/">
boxkat interactive
</a>
project
</h4>
<a onclick="directTo('about')" class="button-wrapper">
<div class="btn">
<p><i class="fas fa-question"></i> INSTRUCTIONS</p>
</div>
</a>
<a onclick="directTo('endless')" class="button-wrapper">
<div class="btn">
<p><i class="fa-solid fa-chevron-right"></i> ENDLESS</p>
</div>
</a>
<a onclick="directTo(0)" class="button-wrapper">
<div class="btn btn-inactive">
<p><i class="fa-solid fa-chevron-right"></i> 20 QUESTIONS</p>
</div>
</a>
<a onclick="directTo(0)" class="button-wrapper">
<div class="btn btn-inactive">
<p><i class="fa-solid fa-chevron-right"></i> MULTIPLE CHOICE</p>
</div>
</a>
<p>WIP - Expect more content soon</p>
<div id="bottom-bar">
<a onclick="directTo('settings')" class="button-wrapper">
<div class="btn btn-basic btn-tight">
<i class="fas fa-cog"></i>
</div>
</a>
<a onclick="directTo('project')" class="button-wrapper">
<div class="btn btn-basic btn-tight">
<i class="fas fa-info"></i>
</div>
</a>
<a
onclick="directTo('https:\/\/boxkat.github.io/')"
class="button-wrapper"
>
<div
class="btn btn-basic btn-tight"
style="height: 0.8em; width: 0.8em"
>
<svg
data-src="https://boxkat.github.io/assets/img/boxkat.svg"
data-cache="disabled"
viewBox="0 0 16 16"
class="logo"
width="100%"
height="100%"
fill="currentColor"
></svg>
</div>
</a>
</div>
</div>
<script
src="https://cdnjs.cloudflare.com/ajax/libs/SoundJS/1.0.2/soundjs.min.js"
integrity="sha512-tWGC9KCH7gq1wgk/ZwaX1kd7bQq8M8ekETvWy0Mk8d9+d9XWHR4F3CuzbPJnUnu/eyEX/rPyYguXHtvN6WzcRQ=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
></script>
<script
type="text/javascript"
src="https://unpkg.com/external-svg-loader@latest/svg-loader.min.js"
async
></script>
<script src="script.js"></script>
</body>
</html>