-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.html
61 lines (44 loc) · 1.89 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
54
55
56
57
58
59
60
<!DOCTYPE html>
<html lang="pt-br">
<!-- CABEÇA CONFIGURAÇÕES -->
<head>
<meta charset="UTF-8">
<title>Lista de tarefas</title>
<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=Quicksand:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="./assets/css/reset.css">
<link rel="stylesheet" type="text/css" href="./assets/css/style.css">
</head>
<!-- CORPO -->
<body>
<main>
<!-- APP LISTA DE TAREFAS -->
<section>
<!-- CABEÇALHO DO APP -->
<header>
<h1>Lista de tarefas</h1>
<p>Acelere sua entrada no mercado de programação.</p>
</header>
<!-- ÁREA DE FORMULÁRIO/ADICIONA NOVA TAREFA -->
<div class="formularioTarefa">
<label for="inputadicionarTarefa">Adicionar uma nova tarefa</label>
<input type="text" id="inputadicionarTarefa" placeholder="Adicionar uma nova tarefa">
<button>Adicionar</button>
</div>
<!-- ÁREA DE LISTA DE TAREFAS -->
<div class="listaTarefas">
<ul>
</ul>
</div>
<!-- MODO NOTURNO -->
<div class="modoNoturno">
<label for="inputModonoturno">Modo noturno</label>
<input type="checkbox" id="inputModonoturno">
</div>
</section>
</main>
</body>
<!-- <script src="./aula_03.js"></script> -->
<script src="./assets/js/script.js"></script>
</html>