-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
52 lines (44 loc) · 1.3 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
<html>
<!doctype html>
<head>
<meta charset="UTF-8">
<title>Circuit Timer</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/style.min.css" media="all">
<link rel="icon" href="icons/favicon.ico">
</head>
<body>
<header class="Header">
<h1>Circuit chrono</h1>
</header>
<main>
<!-- Homepage -->
<div class="Page" id="Page_Choice">
<label for="inp_time">Time for one lap :</label>
<input id="inp_time" type="number" min="0" step="1" value="42">
<button class="Btn" id="btn_compute">Go !</button>
</div>
<!-- Chrono page -->
<div class="Page" id="Page_Chrono">
<label for="currentTime">Elapsed time for the lap : </label>
<span id="currentTime">
0
</span>
<br>
<progress class="Progress" id="progress" value="0" max="0"></progress>
<br>
<label for="rounds">Laps : </label>
<span id="rounds">
0
</span>
<br>
<button class="Btn" id="btn_pauseResume">Pause</button>
<button class="Btn" id="btn_end">End</button>
</div>
<footer class="Footer">
Application made by <a target="_blank" href="http://tomcanac.com">Tom Canac</a>. Icon from the <a target="_blank" href="http://mokaproject.com/">Moka project</a>.
</footer>
</main>
<script src="js/script.min.js"></script>
</body>
</html>