-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
62 lines (62 loc) · 1.83 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<title>Document</title>
</head>
<body>
<div class="flex-container">
<div class="row">
<h2 style="color: #3f51b5; text-align: center;">
Enter your answer and click Submit
</h2>
</div>
<div class="row">
<div style="width: 250px; height: 60px;">
<h3 id="currentQuestion"></h3>
</div>
<div style="width: 250px; height: 60px;">
<input
type="number"
name=""
id="currentAnswer"
min="0"
max="81"
step="1"
placeholder="Answer here"
/>
</div>
<div style="width: 250px; height: 60px;">
<button type="button" id="submit" onclick="handleSubmit()">
Submit<audio
id="submitSound"
src="https://www.fesliyanstudios.com/play-mp3/6683"
/>
</button>
</div>
</div>
<div class="row">
<div style="width: 250px; height: 60px;">
<h3 id="greenScore">Correct: <span id="green"></span></h3>
</div>
<div style="width: 250px; height: 60px;">
<h3 id="redScore">Incorrect: <span id="red"></span></h3>
</div>
<div style="width: 250px; height: 60px;">
<button type="button" id="restart" onclick="handleRestart()">
Restart<audio
id="restartSound"
src="https://www.fesliyanstudios.com/play-mp3/6683"
/>
</button>
</div>
</div>
<div class="row">
<h3 id="gameResult"></h3>
</div>
</div>
<script src="main.js"></script>
</body>
</html>