-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
45 lines (39 loc) · 1.73 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<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=Marmelad&display=swap" rel="stylesheet">
<link id="favicon" rel="icon" href="./assets/images/peace96orange.png" type="image/png" sizes="48x48">
<link rel="stylesheet" href="./css/style.css">
<script src="./js/app.js" type="module"></script>
<title>Be a Great Human</title>
</head>
<body>
<h1>Be a Better Human: The Quizzening</h1>
<h2>Get through life without looking dumb (or dying)</h2>
<div id="meditate-div"><img src="./assets/images/meditate.png" id="meditate-pic"></div>
<div class="generic-background">
<div id="rules-btns-container">
<div id="rules-div"><p>Being a good person doesn't have to be like wearing a neon yellow sweater you show off to the world - all it takes is paying attention to the little details in life.</p>
<p>Take this quiz to find out if you're a solid human.</p>
<p>Choose category to begin:</p>
</div>
<div id="buttons-container">
<button class="button" id="btn-category-1">Communication/Interaction</button><br>
<button class="button" id="btn-category-2">Survival/Life Hacks</button><br>
<button class="button" id="btn-category-3">Impact on the world</button><br>
</div>
</div>
<div id="question-container">
<p id="question-p"></p>
<ul id="answers-ul"></ul>
</div>
<div id="countdown"></div>
<div id="player-score"></div>
<button id="btn-reset">Reset Game</button>
</div>
</body>
</html>