-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
66 lines (61 loc) · 1.31 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>24</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<header>
<h1>
<div id="js-background"></div>
<div id="js">JS</div>
<div id="twenty-four">
<span>24</span>
<span id="solution"></span>
</div>
<div id="result"></div>
</h1>
<div id="stats">
<table>
<tr>
<td>{{won}}</td>
<td id="won"></td>
</tr>
<tr>
<td>{{total}}</td>
<td id="total"></td>
</tr>
<tr>
<td>{{averageLength}}</td>
<td id="average-length"></td>
</tr>
</table>
</div>
<ul id="digits">
<li></li>
<li></li>
<li></li>
<li></li>
</ul>
<div id="hints">
<div>{{tooHard}}</div>
</div>
</header>
<div id="expr-wrapper">
<div id="expr-caret">></div>
<input id="expr" autocomplete="off" type="text">
</div>
<ol id="rules">
<li>{{rule0}}</li>
<li>{{rule1}}</li>
<li>{{rule2}}</li>
<li>{{rule3}}</li>
<li>{{rule4}}</li>
</ol>
<footer>
<a href="https://github.com/HandsomeOne/JavaScript24" target="_blank">· Fork me on GitHub ·</a>
</footer>
<script src="bundle.js"></script>
</body>
</html>