-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
36 lines (36 loc) · 1.35 KB
/
index.html
File metadata and controls
36 lines (36 loc) · 1.35 KB
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
<!DOCTYPE html>
<html lang = "en">
<head>
<title>MATHS GAME</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=yes">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="container">
<div id="score">
Score: <span id="scorevalue">0</span>
</div>
<div id = "high">
High Score: <span id="highest">0</span>
</div>
<div id="correct">Correct</div>
<div id="wrong">Try Again</div>
<div id="question"></div>
<div id="instruction">Click on the correct answer</div>
<div id="choices">
<div id="box1" class="box"></div>
<div id="box2" class="box"></div>
<div id="box3" class="box"></div>
<div id="box4" class="box"></div>
</div>
<div id="startreset"><span id="st">Start Game</span></div>
<div id="timeremain">Time Remaining: <span id="timer">60</span> sec </div>
<div id="gameOver">
<p>Game Over</p>
<p>Your Score is <span id="finalscore">0</span></p>
</div>
</div>
<script src="helper.js"></script>
</body>
</html>