-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
64 lines (56 loc) · 2.2 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>HIIT Timer</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div id="page">
<header><p>HIIT Timer</p></header>
<div id="start">START</div>
<div id="reset">RESET</div>
<div id="finish">FINISH</div>
<form class="information form">
Active time: <input type="number" min="0" name="work-length" placeholder="Seconds">
Break time: <input type="number" min="0" name="break-length" placeholder="Seconds">
Sets: <input type="number" min="0" name="sets-length">
</form>
<div class="information congratulations">
<div id="msg"><p>Congratulations!</p></div>
</div>
<div class="information stats">
<p>Statistics</p>
<div class="lists">
<ul>
<li>Time spent training</li>
<li>Time spent on breaks</li>
<li>Time spent paused</li>
<li>Total time spent</li>
<li>Sets completed</li>
<li>Exercises per set</li>
<li>Total exercises completed</li>
</ul>
<ul>
<li>Seconds</li>
<hr>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
</ul>
</div>
</div>
<div id="required"><p>Please fill in all required information.</p></div>
<div id="action"><p></p></div>
<div id="sets"><p></p></div>
<div id="timer"><p></p></div>
<div id="exercise"><p></p></div>
<div id="early">FINISH EARLY</div>
</div>
<script type="text/javascript" src="script.js"></script>
</body>
</html>