-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
50 lines (50 loc) · 1.08 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
<html>
<head>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="result" class="flex hidden">
<div>
<div class="rcol" name="top">
Game Finished!
</div>
<div class="rcol" name="percent">
Accuracy: 60%
</div>
<div class="rcol" name="bottom">
<button>Play again</button>
</div>
</div>
</div>
<div id="query" class="flex hidden">
<div>
Correct!
</div>
</div>
<div id="game" class="flex">
<div class="top">
Question goes here
</div>
<div class="ans">
<div class="col">
<div name="red">
One
</div>
<div name="green">
Two
</div>
</div>
<div class="col">
<div name="blue">
Three
</div>
<div name="yellow">
Four
</div>
</div>
</div>
</div>
<script src="https://code.jquery.com/jquery-3.7.1.js"></script>
<script src="index.js"></script>
</body>
</html>