-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
53 lines (45 loc) · 1.91 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
<!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">
<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=Scope+One&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<title>Lista de tarefas</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>Minha Lista de Tarefas</h1>
<p id="funcionamento">Clique duas vezes em um item para marcá-lo como <span>completo</span></p>
</header>
<main>
<section id="nav-container">
<button id="mover-cima"><i class="fa fa-arrow-up"></i> Mover para cima</button>
<button id="mover-baixo"><i class="fa fa-arrow-down"></i> Mover para baixo</button>
<button id="remover-selecionado"><i class="fa fa-hand-pointer-o"></i> Apagar selecionada</button>
<button id="remover-finalizados"><i class="fa fa-trash-o"></i> Apagar finalizadas</button>
<button id="apaga-tudo"><i class="fa fa-trash"></i> Apagar tudo</button>
<button id="salvar-tarefas"><i class="fa fa-save"></i> Salvar tarefas</button>
</section>
<section id="texto-container">
<div id="tarefas">
<div id="nova-tarefa">
<input id="texto-tarefa" placeholder="Digite uma nova tarefa">
<button id="criar-tarefa"><i class="fa fa-plus"></i>
</button>
</div>
<ol id="lista-tarefas"></ol>
</div>
</section>
</main>
<footer>
<p>Desenvolvido em HTML, CSS e Javascript por <a href="https://github.com/VicSales28" target="_blank">Victoria
Sales</a> :)</p>
</footer>
<script src="script.js"></script>
</body>
</html>