-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
78 lines (65 loc) · 2.12 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>To do List - Seu gerenciador de tarefas</title>
<!-- Favicon -->
<link rel="icon" href="favicon-icon.svg">
<!-- Fonte do projeto -->
<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=Inter:wght@100..900&display=swap" rel="stylesheet">
<!-- Css do projeto -->
<link rel="stylesheet" href="assets/css/style.css">
<!-- Scripts do projeto -->
<script src="assets/scripts/app.js" defer></script>
</head>
<body>
<header class="header">
<a href="index.html">
<img src="assets/images/logo.svg" width="126" height="48" alt="Logo To do list">
</a>
<div class="formTask">
<form>
<input type="text" name="task" id="task" placeholder="Adicione uma nova tarefa">
<button type="button" id="createTask">
Criar
<img src="assets/images/plus.svg" width="16" height="16" alt="Icone plus">
</button>
</form>
</div><!-- Formulário para criar tasks -->
</header><!-- Header -->
<main>
<section class="taskInformation">
<div class="container">
<div class="taskInformationResult">
<h3>
Tarefas criadas
<span id="tasksCreated">0</span>
</h3>
<h3>
Concluídas
<span id="tasksCompleted">
0
</span>
</h3>
</div>
</div>
</section><!-- Informações das tarefas -->
<section class="registeredTasks" id="registeredTasksId">
<ul></ul>
</section><!-- Tarefas cadastradas -->
<section class="unregisteredTasks" id="unregisteredTasks">
<div>
<img src="assets/images/clipboard.png" width="56" height="56" alt="Clipboard icone">
<p>
<span>Você ainda não tem tarefas cadastradas</span>
<br>
Crie tarefas e organize seus itens a fazer
</p>
</div>
</section><!-- Tarefas não cadastradas -->
</main>
</body>
</html>