-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
80 lines (77 loc) · 2.38 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
74
75
76
77
78
79
80
<!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="stylesheet"
href="https://cdn.jsdelivr.net/npm/bulma@0.9.4/css/bulma.min.css"
/>
<link rel="stylesheet" href="./src/style.css" />
<link
rel="shortcut icon"
href="./src/assets/favicon.png"
type="image/x-icon"
/>
<title>Tasks!</title>
</head>
<body
class="has-background-dark is-flex is-align-items-center is-flex-direction-column is-justify-content-space-between"
>
<header
class="header p-4 is-flex is-justify-content-space-between is-align-items-center has-background-black"
>
<div class="logo is-flex is-align-items-center is-justify-content-center">
<ion-icon
class="checkLogo is-size-2 has-text-primary"
name="checkmark-done-circle-outline"
></ion-icon>
<p class="titleHeader title is-4 has-text-white-ter">Tasks!</p>
</div>
<div class="formArea">
<form id="form" class="inputArea">
<input
id="input"
class="input is-primary"
type="text"
placeholder="Digite aqui sua tarefa"
autocomplete="off"
/>
</form>
</div>
<p class="buttons">
<button class="button is-small is-black has-text-primary">
<span class="dark icon is-small">
<ion-icon name="moon-sharp"></ion-icon>
</span>
</button>
</p>
</header>
<main id="main" class="panel">
<ul id="tasks" class="tasks"></ul>
</main>
<footer id="footer" class="footer has-background-black">
<div class="content has-text-centered">
<p>Dev. by <strong>Carlos Cunha Jr</strong>. © 2023</p>
Acesse o meu
<a
class="linkPort has-text-primary"
href="https://carloscunha611.github.io/portfolio/"
target="_blank"
>portfólio</a
>
</div>
</footer>
<!-- Scripts -->
<script src="./src/main.js"></script>
<script
type="module"
src="https://unpkg.com/ionicons@7.1.0/dist/ionicons/ionicons.esm.js"
></script>
<script
nomodule
src="https://unpkg.com/ionicons@7.1.0/dist/ionicons/ionicons.js"
></script>
</body>
</html>