-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (39 loc) · 1.73 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
<!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>Projeto To Do List</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-eOJMYsd53ii+scO/bJGFsiCZc+5NDVN2yr8+0RDqr0Ql0h+rP48ckxlpbzKgwra6" crossorigin="anonymous">
<link rel="stylesheet" href="style.css">
</head>
<body>
<header class="h1">Minha Lista de Tarefas</header>
<p id="funcionamento" class="h4">ℹ️ Clique duas vezes em um item para marcá-lo como completo</p>
<div class="form-group">
<label for="task"></label>
<input type="text" id="texto-tarefa" name="task" class="form-control" placeholder="Adicione uma tarefa...">
<button id="criar-tarefa" class="btn">➕</button>
</div>
<div class="commands">
<div class="direcao btn-group">
<button id="mover-cima" class="btn">Mover ⬆️</button>
<button id="mover-baixo" class="btn">Mover ⬇️</button>
</div>
</div>
<div class="tools">
<div class="tools1 btn-group">
<button id="apaga-tudo" class="btn btn-danger">Apaga tudo 🗑️</button>
<button id="remover-finalizados" class="btn btn-secondary btn-success">Remove finalizados ✔️</button>
</div>
<div class="tools2 btn-group">
<button id="salvar-tarefas" class="btn btn-primary">Salvar tarefas 💾</button>
<button id="remover-selecionado" class="btn btn-success">Remover selecionado ☑️</button>
</div>
</div>
</div>
<ol id="lista-tarefas"></ol>
<script src="script.js"></script>
</body>
</html>