-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquestions.html
46 lines (39 loc) · 1.56 KB
/
questions.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>123Go!</title>
<link rel="stylesheet" href="home.css">
</head>
<body>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script type="text/javascript" src="questions.js"></script>
<audio src="BGM/bgm.mp3" id="my_audio" loop="loop" autoplay="autoplay"></audio>
<div class="top-bar">
<div id="score">
Score: 0
</div>
<div id="player">
Player Name
</div>
</div> <br>
<div class="body">
<br>
<div id="level-points">
MEDIUM (Points: 5)
</div>
<h1 id="question" class="question">4 + 5 = _</h1>
<button id="op1" class="option">45</button> <br> <br>
<button id="op2" class="option">8</button> <br> <br>
<button id="op3" class="option">9</button> <br> <br>
<button id="op4" class="option">54</button>
<br> <br> <br> <br>
<button id="go">CHECK!</button>
<button id="next">NEXT</button>
<br> <br> <br> <br> <br> <br>
<button id="quit" onclick="location.href='index.html';">QUIT</button>
<br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br>
</div>
</body>
</html>