mmg/static/addsub

27 lines
847 B
Plaintext
Raw Normal View History

2013-04-23 18:02:59 -07:00
<!DOCTYPE html>
<html lang="en">
<head>
2013-05-08 22:57:52 -07:00
<title>Mardson's Math Game</title>
2013-04-23 18:02:59 -07:00
<meta name="viewport" content="width=device-width, initial-scale=1.0">
2013-05-08 22:57:52 -07:00
<link href="/math.css" rel="stylesheet" media="screen">
2013-04-23 18:02:59 -07:00
</head>
<body>
<section id="content">
2013-04-23 23:06:24 -07:00
<span class="number" id="first">0</span>
<span class="number" id="operation">+</span>
<span class="number" id="second">0</span>
<div>
2013-04-23 23:50:24 -07:00
<input id="answer" type="number" size="2" class="number" autofocus />
2013-04-23 22:48:16 -07:00
</div>
2013-04-23 18:02:59 -07:00
</section>
2013-04-23 23:27:30 -07:00
<footer>
score: <span id="score"></span>
2015-01-13 07:38:07 -08:00
<div>
<a href="/">home</a>
</div>
2013-04-23 23:27:30 -07:00
</footer>
2014-12-07 21:23:31 -08:00
<script src="/jquery.js"></script>
2013-05-08 22:57:52 -07:00
<script src="/math.js"></script>
2013-04-23 18:02:59 -07:00
</body>
</html>