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>
|
|
|
|
</footer>
|
2013-05-08 22:57:52 -07:00
|
|
|
<script src="/jquery-2.0.0.min.js"></script>
|
|
|
|
<script src="/math.js"></script>
|
2013-04-23 18:02:59 -07:00
|
|
|
</body>
|
|
|
|
</html>
|