-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
78 lines (62 loc) · 2.02 KB
/
Copy pathindex.html
File metadata and controls
78 lines (62 loc) · 2.02 KB
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<!DOCTYPE html>
<html lang="en">
<head>
<!--Título-->
<title>Pomodoro Timer</title>
<link rel="icon" href="icons/tomate.png">
<!--Metas-->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<!--CSS stylesheet-->
<link rel="stylesheet" href="css/style.css">
<!--CDN Google Fonts(fuentes)-->
<link href="https://fonts.googleapis.com/css?family=M+PLUS+Rounded+1c:300&display=swap" rel="stylesheet">
</head>
<body>
<h1>Pomodoro Timer</h1>
<!--Circulo svg-->
<svg id="circulo" class="light-bulb theme-color-one" height="440" width="440">
<circle
r="220"
cx="320"
cy="220"
fill="transparent"
stroke="white"
stroke-width="4"
transform="rotate(-90 270 270)">
</svg>
<!--Timer-->
<div id="timer">
<div id="app">
<div id="timer">
<span id="minutesDom">00</span>
<span id="colon">:</span>
<span id="secondsDom">00</span>
</div>
<div id="botones">
<button id="newPomodoro" class="efecto-botones">Comenzar</button>
<button id="rest" class="efecto-botones">Descanso</button>
<button id="reset" class="efecto-botones">Reiniciar</button>
<button id="info"><img src="icons/info.png" alt="" srcset=""></button>
</div>
</div><!--Timer-->
<!-- Modal -->
<div id="modal" class="modal">
<!-- Contenido de la Modal -->
<div class="modal-content">
<div class="modal-header">
<span class="close">×</span>
</div>
<div class="modal-body">
<p>La técnica pomodoro es una forma de administrar el tiempo de trabajo, planificar
y ejecutar tareas para ser más productivo.</p>
<img src="images/modal .png" alt="Instrucciones del Pomodoro">
</div>
</div><!-- Contenido de la Modal -->
</div><!-- Modal -->
<!--Scripts/JS-->
<script src="js/timer.js"></script>
<script src="js/index.js"></script>
</body>
</html>