-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
61 lines (58 loc) · 2.35 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./assets/CSS/style.css">
<title>The ER Quiz</title>
</head>
<body>
<header id="title">
<h1>Welcome to The Elden Ring Quiz</h1>
<h4>Press start Maidenless</h4>
<button id="start-btn">Start</button>
<button id="highscore-btn">Check Highscores</button>
<!-- !High scores -->
</header>
<div class="hidden" id="score-container">
<h2>Highscores</h2>
<ol id="score-list"></ol>
<button onclick="window.location.reload()" id="return">home</button>
</div>
<!-- !Timer -->
<div class="hidden" id="timer-container">
<h3 id="timer"></h3>
</div>
<!-- !Loser div -->
<div class="hidden" id="loser">
<img src="./assets/Images/dark-souls.gif">
<button onclick="window.location.reload()" id="return">Retry</button>
<img src="./assets/Images/you-died.gif">
</div>
<!-- !Questions appear here -->
<div class="hidden" id="question-container">
<h1 id="question-display"></h1>
<div id="answer-container">
<button class="answer-buttons" id="answer-slotA" ></button>
<button class="answer-buttons" id="answer-slotB" ></button>
<button class="answer-buttons" id="answer-slotC" ></button>
<button class="answer-buttons" id="answer-slotD" ></button>
</div>
<div id="solution-container">
<p id="solution-note"></p>
</div>
</div>
<!-- ! victory score div -->
<div class="hidden" id="victory-container">
<h2>Praise the Sun!</h2>
<p id="score-input"></p>
<form id="name-submission">
<label for="name-submission">Enter your name tarnished</label>
<input type="text" name="name-submission" id="player-name" value="">
<button type="submit" id="submit-btn">submit</button>
</form>
</div>
<script src="./assets/JS/app.js"></script>
</body>
</html>