-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (35 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
35
<!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">
<script type="text/javascript" src="script.js"></script>
</head>
<body>
<header>
<h1>To-do</h1>
</header>
<section id="tasks">
<input id="texto-tarefa" type="text">
<button id="criar-tarefa">New Task</button>
<section id="tasks-items">
<ol id="lista-tarefas"></ol>
</section>
</section>
<section id="general-controls">
<div class="buttons">
<button id="apaga-tudo">Delete All</button>
<button id="remover-finalizados">Delete Finelized</button>
<button id="remover-selecionado">Delete</button>
<button id="salvar-tarefas">Save Editions</button>
</div>
<section id="move">
<button id="mover-cima" class="mover-cima"><img class="icons" src="images/up.png" alt="Mover Para Cima"></button>
<button id="mover-baixo" class="mover-baixo"><img class="icons" src="images/down.png" alt="Mover Para Baixo"></button>
</section>
</section>
</body>
</html>