-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (38 loc) · 1.43 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
<!DOCTYPE html>
<html lang="en">
<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">
<title>Temporizador</title>
<!-- fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins&family=Share+Tech+Mono&display=swap" rel="stylesheet">
<!-- styles -->
<link rel="stylesheet" href="styles.css">
<!-- scripts -->
<script defer src="script.js"></script>
</head>
<body>
<div class="timer">
<div class="change__timer">
<input type="time" class="timer__default-custom" id="timer-custom">
<div class="timer__default">
<button class="timer__default-first" id="default-first"></button>
<button class="timer__default-second" id="default-second"></button>
</div>
</div>
<div class="timer__time">
<span class="timer__time-minutes" id="minutes">00</span>
<span class="timer__time-colon">:</span>
<span class="timer__time-seconds" id="seconds">00</span>
</div>
<div class="timer__controls">
<button class="timer__controls-start" id="start">Start</button>
<button class="timer__controls-pause" id="pause">Pause</button>
<button class="timer__controls-reset" id="reset">Reset</button>
</div>
</div>
</body>
</html>