-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
45 lines (45 loc) · 1.55 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
<!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>Lista de Tarefas</title>
<link rel="stylesheet" href="style.css" />
<!-- favicon from here: https://upload.wikimedia.org/wikipedia/commons/thumb/1/1b/Twemoji_1f4dd.svg/768px-Twemoji_1f4dd.svg.png -->
<link
rel="shortcut icon"
href="https://upload.wikimedia.org/wikipedia/commons/thumb/1/1b/Twemoji_1f4dd.svg/768px-Twemoji_1f4dd.svg.png"
type="image/x-icon"
/>
</head>
<body>
<header>
<h1 id="title">Minha Lista de Tarefas 📝</h1>
<p id="funcionamento">
Clique duas vezes em um item para marcá-lo como completo
</p>
</header>
<main>
<section id="list">
<input
id="texto-tarefa"
type="text"
placeholder="Inserir lembrete aqui :D"
/>
<button id="criar-tarefa">✎</button>
<ol id="lista-tarefas"></ol>
</section>
<section id="tools">
<button id="apaga-tudo">Apagar Tudo 🗑️</button>
<button id="mover-baixo">🔽</button>
<button id="remover-selecionado">❌</button>
<button id="mover-cima">🔼</button>
<button id="remover-finalizados">Remover Completas ☑️</button>
<button id="salvar-tarefas">💾</button>
</section>
</main>
<footer>Feito com 💚 por Elly Kotlarenko em 2021</footer>
</body>
<script src="script.js"></script>
</html>