-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
31 lines (30 loc) · 972 Bytes
/
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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>lista de tarefas | Eduardo Pontes Dev</title>
</head>
<body>
<header>
<h1>Lista de tarefas | Eduardo Pontes Dev</h1>
</header>
<main>
<div class="conteudo">
<div class="input-tarefa">
<input type="text" id="input-nova-tarefa" placeholder="Digite uma tarefa">
<button id="botao-envia-tarefa" onClick="novaTarefa()">OK</button>
</div>
<div class="tarefa">
<ul id="ul-tarefa">
</ul>
</div>
</div>
</main>
<footer>
©Lista de tarefas 2024 | Eduardo Pontes Dev | Todos os direitos reservados.
</footer>
<script src="./script.js"></script>
</body>
</html>