-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtimer.html
60 lines (52 loc) · 1.56 KB
/
timer.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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Link CSS -->
<link rel="stylesheet" href="timer.css">
<!-- Título da Aba -->
<title>Timer JavaScript</title>
</head>
<body>
<!-- Cabeçalho -->
<header id="page_header">
<h1>Timer</h1>
</header>
<section id="main_section">
<!-- Input das informações -->
<div id="input">
<!-- Horas do temporizador -->
<p id="hours_paragraph">
Hours:
</p>
<select name="hours" id="hours"></select>
<!-- Minutos do temporizador -->
<p id="minutes_paragraph">
Minutes:
</p>
<select name="minutes" id="minutes"></select>
<!-- Segundos do temporizador -->
<p id="seconds_paragraph">
Seconds:
</p>
<select name="seconds" id="seconds"></select>
<!-- Botão inicializador da contagem -->
<p>
<button id="start" onclick="startCountDown()">Start</button>
</p>
</div>
<!-- Output das informações -->
<div id="output">
<h3></h3>
</div>
</section>
<!-- Rodapé -->
<footer id="page_footer">
<h6>@By Cristian Zanella</h6>
</footer>
<!-- Link JavaScript -->
<script src="timer.js"></script>
</body>
</html>