-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
53 lines (52 loc) · 2.18 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
53
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8" />
<meta name="author" content="Jaen Figueroa" />
<meta name="description" content="Reto css 1 adviento - Pomodoro timer" />
<meta name="keywords" content="html, css, javascript" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0" />
<meta name="robots" content="index, follow" />
<link rel="icon" type="image/x-icon" href="./assets/favicon.ico">
<title>Pomodoro timer</title>
<!-- css -->
<link rel="stylesheet" href="./css/style.css" />
<!-- js -->
<script src="main.js" defer></script>
<!-- fuentes de texto -->
<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=Barlow:wght@300;500&display=swap" rel="stylesheet">
</head>
<body>
<main>
<!-- aviso -->
<div class="aviso" id="aviso">Use this format <b>02:30</b></div>
<!-- temporizador -->
<article class="contenedor-temporizador tema-verde" id="contenedor-temporizador">
<div class="temporizador">
<!-- input -->
<input type="text" class="input-numeros" id="input-numeros" minlength="5" maxlength="5" value="00:00" disabled autocomplete=""></input>
<!-- botones -->
<div class="contenedor-botones">
<button class="temporizador__boton visible" id="boton-start" onclick="start()">
Start
</button>
<button class="temporizador__boton" id="boton-stop" onclick="stop()">Stop</button>
<button class="temporizador__boton-settings" id="boton-settings" onclick="abrirConfiguracion()"></button>
</div>
<!-- icocno check -->
<div class="check" id="icono-check"> </div>
</div>
</article>
</main>
<!-- footer -->
<footer>
<p>Developed by <a href="https://github.com/jaenfigueroa/Pomodoro-timer" title="GitHub">Jaen Figueroa</a> © 2022</p>
</footer>
<!-- audio -->
<audio id="audio" controls>
<source src="./sounds/audio2.wav" type="audio/mp3">
</audio>
</body>
</html>