-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
40 lines (33 loc) · 896 Bytes
/
index.html
File metadata and controls
40 lines (33 loc) · 896 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Math Game</title>
<link rel="stylesheet" href="style.css">
<script src="main.js"></script>
</head>
<body>
<h1>Simple Math Game!</h1>
<div>
<div class="number one"></div> +
<div class="number two"></div> =
<div class="number answer"></div>
</div>
<div>
<button class="numButton">0</button>
<button class="numButton">1</button>
<button class="numButton">2</button>
<button class="numButton">3</button>
<button class="numButton">4</button>
<button class="numButton">5</button>
<button class="numButton">6</button>
<button class="numButton">7</button>
<button class="numButton">8</button>
<button class="numButton">9</button>
</div>
<div>
<button class="clear">Clear</button>
<button class="submit">Submit</button>
</div>
</body>
</html>