blob: 9542df50ca168494b832918215eb932916330fbc (
plain)
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
41
42
43
44
45
46
|
<!DOCTYPE html>
<html>
<head>
<title>Multiplication Flash Cards</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" type="text/css" href="base.css">
<link rel="stylesheet" type="text/css" href="narrow.css"
media="screen and (min-device-width: 320px) and (max-device-width: 568px)">
<link rel="stylesheet" type="text/css" href="wide.css"
media="screen and (min-device-width: 569px)">
</head>
<body>
<details id="history">
<ol id="history-list"></ol>
<summary id="history-average"></summary>
</details>
<form id="test-form">
<span class="test">
<span id="op1"></span>
×
<span id="op2"></span>
=
<input id="answer" type="number" autocomplete="off">
</span>
<button id="submit" type="submit">Check</button>
</form>
<div id="is-correct">
<span id="correct">Correct</span>
<span id="incorrect">Incorrect. The answer is
<span id="correct-answer"></span>.
</span>
<div id="timer">
It took you <span id="time"></span> seconds to answer.
</div>
</div>
<script src="mult.js"></script>
</body>
</html>
|