-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
44 lines (39 loc) · 1.34 KB
/
Copy pathindex.html
File metadata and controls
44 lines (39 loc) · 1.34 KB
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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>To-Do List</title>
<script type="text/javascript" src="jquery-3.6.0.min.js"></script>
<script type="text/javascript" src="app.js" defer=""></script>
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="stylesheet" type="text/css" href="fontawesome/css/all.css">
</head>
<body>
<div id="container">
<div id="hud">
Minha Lista de Tarefas
</div>
<div id="content">
<div id="hcontrols">
<input type="text" placeholder="Nova tarefa" name="new-task" id="new-task">
<button class="btn blue" id="add">Adicinar</button>
</div>
<div id="tasks">
</div>
<div id="fcontrols">
<div id="up-down">
</div>
<div id="fbuttons">
<button class="btn red" id="clear-checked">Limpar Concluidos</button>
<button class="btn red" id="clear-list">Limpar Lista</button>
<button class="btn blue" id="save">Salvar</button>
</div>
</div>
<b>Aviso de privacidade:</b><br><br>
<p>Esta aplicacão não utiliza cookies os dados ficam armazenados no seu navegador.</p>
</div>
</div>
<p>Projecto de HTML, CSS e Javacript desenvolvido por <a href="https://www.eusebiosimango.ga">Euebio Simango</a></p>
</body>
</html>