-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
61 lines (47 loc) · 1.5 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
<!DOCTYPE html>
<html lang="en">
<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>Document</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="container">
<header>
<h1>Minha Lista de Tarefas</h1>
</header>
<p id="funcionamento">
Clique duas vezes em um item para marcá-lo como completo
</p>
<div id="blockAction">
<input type="text" id="texto-tarefa" placeholder="digite uma tarefa" />
<button id="criar-tarefa" class="hoverBtn"><b>Adicionar</b></button>
</div>
<div class="list">
<ol id="lista-tarefas"></ol>
</div>
<div id="blockBtn">
<button id="apaga-tudo" class="hoverBtn"><b>Apagar Tudo</b></button>
<button id="remover-finalizados" class="hoverBtn">
<b>Apagar Completos</b>
</button>
<button id="salvar-tarefas" class="hoverBtn">
<b>Salvar Tarefas</b>
</button>
<button id="mover-cima" class="hoverBtn"><b>Cima</b></button>
<button id="mover-baixo" class="hoverBtn"><b>Baixo</b></button>
<button id="remover-selecionado" class="hoverBtn">
<b>Remover Selecionado</b>
</button>
</div>
</div>
<div class="footer">
<footer>
<p>Desenvolvido por <a href="https://github.com/HenriqueNasciment0">Henrique Nascimento</a></p>
</footer>
</div>
<script src="script.js"></script>
</body>
</html>