-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
48 lines (39 loc) · 1.52 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
46
47
48
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Lista de Tarefas | rickreisme</title>
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css"
integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
</head>
<body>
<div class="titulo">
<h1>Lista de Tarefas | <span><rickreisme/></span></h1>
</div>
<main>
<div class="task_box">
<input placeholder="Digite aqui a sua tarefa" id="input_task" type="text">
<button onclick="newTask()" id="btn_task" title="Clique aqui para adicionar a tarefa">
<i class="fa-solid fa-plus" style="color: #ffffff;"></i>
</button>
</div>
<div class="task_body">
<ul id="to-do-list">
</ul>
</div>
</main>
<footer>
<h3>
2024 <span><rickreisme/></span> <br />
Desenvolvido por Rick Reis
</h3>
</footer>
<script src="script.js"></script>
</body>
</html>