forked from ironhack-labs/lab-javascript-chronometer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
44 lines (40 loc) · 1.32 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>IronChronometer</title>
<link rel="stylesheet" href="styles/style.css" />
</head>
<body>
<section id="splits-container">
<h3>Splits</h3>
<ol id="splits"></ol>
</section>
<div class="leash leash-top"></div>
<section id="clock">
<div id="sphere">
<span id="minDec" class="number">0</span>
<span id="minUni" class="number">0</span>
<span>:</span>
<span id="secDec" class="number">0</span>
<span id="secUni" class="number">0</span>
<div id="milliseconds">
<span id="milDec">0</span>
<span id="milUni">0</span>
</div>
<button id="btnLeft" class="btn start">START</button>
<button id="btnRight" class="btn reset">RESET</button>
<button class="btn reiniciar"><a href="index.html">Rstart</a></button>
</div>
</section>
<div class="leash leash-bottom">
<div class="hole"></div>
<div class="hole"></div>
<div class="hole"></div>
</div>
<script src="javascript/chronometer.js"></script>
<script src="javascript/index.js"></script>
</body>
</html>