forked from pranjay-poddar/Dev-Geeks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (30 loc) · 878 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<title>Math Expression Game</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div class="container">
<h1>Math Expression Game</h1>
<div class="score-container">
<p>Score: <span id="score">0</span></p>
<p>Time Left: <span id="timer">10</span>s</p>
</div>
<div class="expression-container">
<p id="expression">9%5+8</p>
<p id="accuracy"></p>
<input type="text" id="answer" placeholder="Your answer">
<button id="submitBtn" >Submit</button>
</div>
<div class="message-container">
<p id="message"></p>
<div class="container-btn">
<button id="startBtn">Start Game</button>
<button id="quitBtn">Quit Game</button>
</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>