-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·29 lines (24 loc) · 946 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
<!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="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.0/css/all.min.css"
integrity="sha512-10/jx2EXwxxWqCLX/hHth/vu2KY3jCF70dCQB8TSgNjbCVAC/8vai53GfMDrO2Emgwccf2pJqxct9ehpzG+MTw=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1>lista de tarefas</h1>
<div class="container">
<form class="form">
<input type="text" autocomplete="off" autofocus name="tarefa" id="tarefa" placeholder="Digite sua tarefa">
<button title="adicionar tarefa" onclick="addTarefa()" type="submit" class="btn">Adicionar</button>
</form>
<ul class="lista"></ul>
</div>
<script src="main.js"></script>
</body>
</html>