-
Notifications
You must be signed in to change notification settings - Fork 0
/
game.html
59 lines (56 loc) · 1.86 KB
/
game.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Technical Writing Quiz</title>
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-BmbxuPwQa2lc/FVzBcNJ7UAyJxM6wuqIj61tLrc4wSX0szH/Ev+nYRRuWlolflfl"
crossorigin="anonymous"
/>
<!-- <link rel="stylesheet" href="style.css" /> -->
<link rel="stylesheet" href="style.css" />
<script
src="https://kit.fontawesome.com/7c0bcaa930.js"
crossorigin="anonymous"
></script>
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link
href="https://fonts.googleapis.com/css2?family=Truculenta:wght@100;200;300;400;500;600;700;800;900&display=swap"
rel="stylesheet"
/>
</head>
<body>
<div class="container" class="flex-column flex-center">
<div class="flex-column flex-center">
<div id="leaderBoard"></div>
<div id="timer">
<p id="countdown">00:00</p>
</div>
<p id="score-prefix" style="display: none">Score</p>
<!-- Add start button -->
<p id="score"></p>
<button
id="start"
class="btn btn-outline-info d-grid gap-2 col-6 mx-auto"
class="data-bs-toggle"
="button"
>
Start
</button>
</div>
<div id="question"></div>
<div id="choices"></div>
</div>
<div id="initials"></div>
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-b5kHyXgcpbZJO/tY9Ul7kGkf1S0CWuKcCD38l8YkeH8z8QjE0GmW1gYU5S9FOnJ0"
crossorigin="anonymous"
></script>
<script src="./showleaderboard.js"></script>
<script src="./game.js"></script>
</body>
</html>