-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (37 loc) · 1.86 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>To-do List</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65" crossorigin="anonymous">
<link rel="stylesheet" href="./Public/CSS/home.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.min.css">
</head>
<body>
<div class="container-geral">
<div class="container mt-5 py-3 text-center">
<h3 class="py-3 fw-bold text-primary">📕 To-Do List</h3>
<div class="input-group mb-4 w-75 mx-auto">
<span class="input-group-text bg-primary text-white" id="basic-addon1">📖</span>
<input type="text" class="task-input form-control" placeholder="Digite uma tarefa" aria-label="Task"
aria-describedby="basic-addon1">
</div>
<button type="button" class="btn-add-task btn btn-primary btn-md px-4">✏️ Adicionar Tarefa</button>
</div>
</div>
<div class="container-tasks">
<div class="box-tasks container mt-4">
<!-- OS ITENS IRÃO APARECER AQUI -->
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js"
integrity="sha384-oBqDVmMz9ATKxIep9tiCxS/Z9fNfEXiDAYTujMAeBAsjFuCZSmKbSSUnQlmh/jp3"
crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js"
integrity="sha384-cuYeSxntonz0PPNlHhBs68uyIAVpIIOZZ5JqeqvYYIcEL727kskC66kF92t6Xl2V"
crossorigin="anonymous"></script>
<script src="./Public/JS/home.js"></script>
</body>
</html>