-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathmath.html
31 lines (30 loc) · 835 Bytes
/
math.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
<!doctype HTML>
<html lang="en">
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="apple-mobile-web-app-capable" content="yes" />
<title>Mental Math</title>
<link rel="stylesheet" type="text/css" href="css/stylesheet.css">
</head>
<body>
<div class="container">
<h1>Mental Math</h1>
<h2>How fast are you?</h2>
<p>
<span id="p"></span> <span id="op"></span> <span id="q"></span>
</p>
<p id="response"></p>
<p id="results"></p>
<p id="category"></p>
<div class="controls">
<form>
<input type="text" name="answer" id="in" autocomplete="off">
</form>
<button id="start">START</button>
<button id="stop">STOP</button>
</div>
</div>
<script type="text/javascript" src="js/math.js"></script>
</body>
</html>