-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (34 loc) · 1.17 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
<!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>To do List</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>Minha Lista de Tarefas</h1>
<p id="funcionamento"><em>Clique duas vezes em um item para marcá-lo como completo</em></p>
</header>
<div class="containers">
<div class="container-buttons">
<button id='apaga-tudo'>Limpar Lista</button>
<button id='remover-finalizados'>Limpar Completos</button>
<button id="salvar-tarefas">Salvar Tarefas</button>
</div>
<div class="container-input">
<input id="texto-tarefa" placeholder="Digite uma tarefa">
<button id="criar-tarefa">Adicionar</button>
<button id="remover-selecionado">X</button>
<button id="mover-cima">∆</button>
<button id="mover-baixo">∇</button>
</div>
</div>
<div>
<ol id="lista-tarefas"></ol>
</div>
<script src="script.js"></script>
</body>
</html>