-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (44 loc) · 1.73 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Google Fonts -->
<link rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=BioRhyme&family=Space+Mono&display=swap">
<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=Sarala:wght@400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<!-- Font Awesome -->
<script src="https://kit.fontawesome.com/78f50e1103.js" crossorigin="anonymous"></script>
<!-- CSS style -->
<link rel="stylesheet" href="./assets/css/style.css">
<title>Task List</title>
</head>
<body>
<div class="app">
<section class="todo-list">
<h1 class="title">
Taks List
</h1>
<form class="form" action="">
<input class="form-input" type="text" data-form-input>
<button class="form-button" data-form-button> Nova Tarefa </button>
</form>
<ul class="list" data-list>
</ul>
</section>
</div>
<footer class="container__footer">
<p>Desenvolvido por <a class="container--link" href="https://www.linkedin.com/in/gabriel-albuquerque-souza-desenvolvedor/" target="_blank"
rel="noopener noreferrer"> Gabriel Souza</a> - Copyright 2023 ©.
</p>
<p>todos os direitos reservados. Deploy Github:
<a href="https://github.com/gabrieldev071/app-tasklist" target="_blank" rel="noopener noreferrer">
<i class="fa-brands fa-github"></i>
</a>
</footer>
<script type="module" src="main.js"></script>
</body>
</html>