-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
67 lines (56 loc) · 2.29 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<!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" />
<!-- Favicon -->
<link rel="shortcut icon" href="./favicon.ico" type="image/x-icon">
<!-- CSS bootstrap-->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous" />
<!-- CSS style -->
<link rel="stylesheet" href="./assets/css/style.css" />
<title>Lista de Tarefas</title>
</head>
<body>
<div id="background" class="rain"></div>
<div class="container">
<div class="row card_tareas">
<div class="col-12 col-md-8 offset-md-2 col-lg-6 offset-lg-3">
<div class="card">
<div class="card-body">
<h1 class="text-center">Lista de Tarefas</h1>
<div class="date">
<div id="day" class="day_date"></div>
<div id="month" class="month_date"></div>
<div id="year" class="year_date"></div>
</div>
<div class="form_container">
<input class="form-control my-3" id="text_task" type="text" minlength="1" maxlength="30"
placeholder="Escreva e pressione Enter ou clique no botão" autofocus />
<input id="button_tarea" class="btn btn-success button_form" type="submit" value="Tarefa" />
</div>
<div class="mb-3">
<h4 id="total"></h4>
</div>
<div class="cards_tareas" id="cards"></div>
</div>
</div>
</div>
</div>
</div>
<footer>
<span>Feito por <i class="fas fa-heart"></i> Otávio Pinheiro</span>
<div class="social_icons">
<a href="https://www.linkedin.com/in/otaviopiinheiro/" target="_blank">
<img src="./assets/images/linkedin.png" alt="linkedin-icon" /></a>
<a href="https://github.com/otaviopdev" target="_blank">
<img src="./assets/images/github.png" alt="github-icon" /></a>
</div>
</footer>
<!-- Js script -->
<script src="https://kit.fontawesome.com/35d40a1707.js" crossorigin="anonymous"></script>
<script src="./assets/js/script.js"></script>
</body>
</html>