diff options
author | Brian Cully <bjc@kublai.com> | 2014-05-21 21:30:44 -0400 |
---|---|---|
committer | Brian Cully <bjc@kublai.com> | 2014-05-21 21:30:44 -0400 |
commit | 6ff5b510ea4fda8e0744cc8c0f37c59b0ccf78e2 (patch) | |
tree | 18a3d033652be1a1293103bb1f7508ab8ac2bd77 /index.html | |
download | mult-6ff5b510ea4fda8e0744cc8c0f37c59b0ccf78e2.tar.gz mult-6ff5b510ea4fda8e0744cc8c0f37c59b0ccf78e2.zip |
Diffstat (limited to 'index.html')
-rw-r--r-- | index.html | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/index.html b/index.html new file mode 100644 index 0000000..6f72b66 --- /dev/null +++ b/index.html @@ -0,0 +1,41 @@ +<!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> + <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> |