-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
52 lines (49 loc) · 1.68 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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Temporizador estilo Pomodoro">
<link rel="shortcut icon" href="favicon/pomodoro.png" type="image/x-icon">
<!-- <a href="" title="pomodoro icons">Pomodoro icons created by Flat Icons - Flaticon</a> -->
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<title>Pomodoro FocusTimer</title>
</head>
<body>
<main class="app-container">
<div class="timer">
<span class="minutes">25</span>
<span>:</span>
<span class="seconds">00</span>
</div>
<div class="controls">
<button class="play">
<img src="assets/svg/play.svg" alt="Play Button">
</button>
<button class="pause hide">
<img src="assets/svg/pause.svg" alt="Pause Button">
</button>
<button class="stop hide">
<img src="assets/svg/stop.svg" alt="Stop Button">
</button>
<button class="set">
<img src="assets/svg/setting.svg" alt="Set Button">
</button>
</div>
</main>
<footer>
<div class="sound-button">
<button class="sound-on hide">
<img src="assets/svg/sound-on.svg" alt="Sound on Button">
</button>
<button class="sound-off">
<img src="assets/svg/sound-off.svg" alt="Sound Off Button">
</button>
</div>
</footer>
<script src="./js/index.js" type="module"></script>
</body>
</html>