-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcronometro.html
39 lines (35 loc) · 922 Bytes
/
cronometro.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
<html>
<head>
<script src="script.js"></script>
<meta charset="utf-8">
<link rel="stylesheet" href="styles.css">
<title> Cronometro</title>
</head>
<body>
<a id="title" href="cronometro.html">Cronometro</a>
<a id="title" href="main.html">Lista</a>
<div id="tiempo">
<div id="box">
<div id="horas">00</div>
<div id="subs">Horas</div>
</div>
<div id="box">
<div id="minutos">00</div>
<div id="subs">Minutos</div>
</div>
<div id="box">
<div id="segundos">00</div>
<div id="subs">Segundos</div>
</div>
<div id="box">
<div id="milisegundos">00</div>
<div id="subs">Mili</div>
</div>
</div>
<div id="buttons">
<button id="start" onclick="tiempo()">Iniciar / Continuar</button>
<button onclick="parar()">Parar</button>
<button onclick="reiniciar()">Reiniciar</button>
</div>
</body>
</html>