-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
37 lines (37 loc) · 1.07 KB
/
index.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
32
33
34
35
36
37
<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script type="text/javascript" src="dist/index.js"></script>
<link rel="stylesheet" type="text/css" href="index.css" />
</head>
<body>
<table>
<tr>
<td style="width: 400px;">
<canvas id="advancing-clock" width="400" height="400"></canvas>
</td>
<td class="time-text-cell">
<span id="time-digits"></span>
<br />
<span id="time-text"></span>
</td>
</tr>
</table>
<hr />
<table>
<tr>
<td style="width: 300px;">
<canvas id="quiz-clock" width="300" height="300"></canvas>
</td>
<td class="time-text-cell">
?
<br />
<input id="time-guess" type="text" placeholder="pl: 8:15" />
<br />
<img class="correct-image" src="http://68.media.tumblr.com/9cb6a934dee1daf676c2fd0a5812037f/tumblr_o34nfqZD1Q1skfb7vo1_400.gif" />
</td>
</tr>
</table>
</body>
</html>