-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
73 lines (67 loc) · 2.25 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
68
69
70
71
72
73
<!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" />
<link rel="icon" type="image/png" sizes="16x16" href="./img/favicon.ico" />
<link rel="stylesheet" href="./css/style-index.css" />
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.14.0/css/all.min.css"
integrity="sha512-1PKOgIY59xJ8Co8+NE6FZ+LOAZKjy+KY8iq0G4B3CyeY6wYHN3yt9PW0XpSriVlkMXe40PTKnXrLnZ9+fkDaog=="
crossorigin="anonymous"
/>
<script src="./js/storage-sort-todo.js"></script>
<script defer src="./js/js-index.js"></script>
<title>Todo App DevInHouse</title>
</head>
<body>
<header>
<h1>Todo App</h1>
</header>
<form>
<input
class="inputTodo"
type="text"
placeholder="Adicione uma nova Tarefa"
/>
<button class="addButtom" type="submit">
<i class="fas fa-plus-square fa-2x"></i>
</button>
</form>
<div class="appContainer">
<ul class="todoListApp"></ul>
</div>
<footer>
<div class="desenvolvedor">
<p><i class="far fa-copyright"></i>
<i>Wellington Leite Junior</i></p>
</div>
<div class="social">
<a href="https://github.com/wjuniorbh92" ><i class="fab fa-github fa-lg"></i></a>
<a href="https://www.instagram.com/w_juniorr/"><i class="fab fa-instagram fa-lg"></i></a>
<a href="https://www.linkedin.com/in/wellington-junior-32b18b56" ><i class="fab fa-linkedin fa-lg"></i></a>
</div>
</footer>
<div class="modal">
<div class="modalContent">
<div>
<button class="close"><i class="fas fa-times fa-lg"></i></button>
</div>
<form onsubmit="event.preventDefault()">
<input
class="inputModal"
type="text"
placeholder="Adicione o novo valor a tarefa"
/>
<button class="submitEdit"><i class="far fa-edit fa-lg"></i></button>
</form>
</div>
</div>
</body>
</html>