forked from szaboat/tabata-timer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
50 lines (50 loc) · 1.88 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Tabata Timer">
<title>Tabata Timer </title>
<script src="lib/jquery-2.1.0.min.js"></script>
<link rel="stylesheet" href="css/pure-min.css">
<link rel="stylesheet" href="css/main-grid.css">
<link rel="stylesheet" href="css/marketing.css">
<link rel="stylesheet" href="css/font-awesome.css">
</head>
<body>
<div class="header">
<div class="home-menu pure-menu pure-menu-open pure-menu-horizontal pure-menu-fixed">
<a class="pure-menu-heading" href="">Tabata Timer - Made with GopherJS</a>
<ul>
<li class="pure-menu-selected">
<label>Rounds: </label>
<input id="rounds" type="number" name="rounds" min="0" value="8" placeholder="Number of rounds">
</li>
<li>
<label class="on">Training (sec): </label>
<input id="on" type="number" name="on" min="0" step="1" value="20" placeholder="Excercise time">
</li>
<li>
<label class="off">Rest (sec): </label>
<input id="off" type="number" name="off" min="0" step="1" value="10" placeholder="Break time">
</li>
</ul>
</div>
</div>
<div class="splash-container">
<div class="splash">
<h1 class="splash-head">
<span id="roundno">00</span>
<time>00:00</time>
</h1>
<p class="splash-subhead">
Space or Return key = Start, Escape Key = Reset
</p>
<p id="button">
<a href="#" class="pure-button pure-button-primary">Get Started</a>
</p>
</div>
</div>
<script src="lib/app.js"></script>
</body>
</html>