-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtimer.html
More file actions
91 lines (76 loc) · 2.88 KB
/
timer.html
File metadata and controls
91 lines (76 loc) · 2.88 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
79
80
81
82
83
84
85
86
87
88
89
90
91
<!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">
<title>Principal</title>
<link rel="stylesheet" href="estilos/timer.css">
</head>
<body>
<!-- Cabeçalho -->
<header>
<menu>
<a href="#">Timer</a>
<a href="sites/perfil.html">Perfil</a>
<a href="sites/sobrenos.html">Sobre nós</a>
<a href="sites/tragetoria.html">Tragetória</a>
<a href="#">Loja</a>
<a href="#" id="linhavertical">/</a>
<a href="#">Login</a>
<a href="#">Cadastre-se</a>
</menu>
</header>
<!-- Corpo do site -->
<main>
<!-- Adicionar estudo -->
<div class="bloco">
<h3>Adicione aqui suas tarefas</h3>
<p>Timer 01: <input type="text"></p>
<p>Timer 02: <input type="text"></p>
<p>Timer 03: <input type="text"></p>
<p>Timer 04: <input type="text"></p>
</div>
<!-- Timer 01 -->
<div class="sessao">
<p>Timer 1 <input type="checkbox"> - 25 minutos</p>
<p>Pausa 1 <input type="checkbox"> - 5 minutos</p>
<p>Timer 2 <input type="checkbox"> - 25 minutos</p>
<p>Extra <input type="checkbox"> - 10 minutos</p>
<p>Pausa 2 <input type="checkbox"> - 5 minutos</p>
<div class="conclusao">
<p>Total <input type="checkbox"> - 70 minutos / 1 hora e 10 minutos</p>
</div>
</div>
<hr>
<!-- Timer 02 -->
<div class="sessao">
<p>Timer 3 <input type="checkbox"> - 25 minutos</p>
<p>Pausa 3 <input type="checkbox"> - 5 minutos</p>
<p>Timer 4 <input type="checkbox"> - 25 minutos</p>
<p>Extra <input type="checkbox"> - 10 minutos</p>
<p>Pausa 4 <input type="checkbox"> - 5 minutos</p>
<div class="conclusao">
<p>Total <input type="checkbox"> - 140 minutos / 2 hora e 30 minutos</p>
</div>
</div>
<hr>
<div id="descanso">
<p>Descanso <input type="checkbox"> - 60 / 1hora</p>
<p>Horas estudadas: <input type="number"></p>
</div>
</main>
<!-- Rodapé -->
<footer>
<div id="desenvolvido">
<p>Desenvolvido por © Luis Pedro do Carmo Costa</p>
<p>3ª versão</p>
</div>
<hr>
<div id="contato">
<h3>Alguma sugestão? Mande um gmail para gente</h3>
<p>Gmail: <a href="mailto:luispedroccosta@gmail.com">luispedroccosta@gmail.com</a></p>
</div>
</footer>
</body>
</html>