-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
44 lines (41 loc) · 1.49 KB
/
index.html
File metadata and controls
44 lines (41 loc) · 1.49 KB
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>CubeStop</title>
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inconsolata:wght@300;400&family=Lato:wght@300;400;700&display=swap" rel="stylesheet">
</head>
<body>
<div class="container">
<div id="container">
<div id="scram"></div>
<div id="timeOut"><span id="min"></span><span id="colon"></span><span id="sec">0</span>.<span id="decimal">00</span></div>
<div id="timeList"></div>
<div class="clearbutton">
<button>
<a id="clear" href="#">[X] Clear Times</a>
</button><br />
</div>
<div class="stats">
<span id="solves">
<b>Solves</b><br><span id="solveNum">0</span>
</span>
<br />
<span id="solves">
<b>Average</b><br><span id="overallAv"></span>
</span>
<br />
<span id="solves">
<b>Best</b><br><span id="solveNum"></span>
</span>
<br />
</div>
</div>
</div>
<script type="text/javascript" src="index.js"></script>
</body>
</html>