-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
81 lines (72 loc) · 3.43 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
81
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<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=Great+Vibes&display=swap" rel="stylesheet">
<script src="./script.js" defer></script>
<link rel="stylesheet" href="./style.css">
<title>Task List V1</title>
</head>
<body>
<main>
<div id="inputs-menu">
<label for="texto-tarefa" id="task-header">Tarefa:</label>
<input maxlength="75" id="texto-tarefa" type="text" placeholder="Digite sua Tarefa">
<div class="div-buttons">
<button id="criar-tarefa">Adicionar</button>
<button id="remover-finalizados">Limpar Concluídas</button>
<button id="apaga-tudo">Limpar Todas</button>
</div>
</div>
<ul id="lista-tarefas">
<h2>A fazer</h2>
<audio id='task-doned' src='./audio/ding-101492.mp3'></audio>
</ul>
<ul id="concluidas">
<h2>Concluídas</h2>
</ul>
</main>
<aside class="sidebar">
<svg xmlns="http://www.w3.org/2000/svg" x="0px" y="0px" width="100" height="100" viewBox="0 0 48 48" id="menu-icon">
<linearGradient id="9iHXMuvV7brSX7hFt~tsna_Rdp3AydLFY2A_gr1" x1="12.066" x2="34.891" y1=".066" y2="22.891"
gradientUnits="userSpaceOnUse">
<stop offset=".237" stop-color="#3bc9f3"></stop>
<stop offset=".85" stop-color="#1591d8"></stop>
</linearGradient>
<path fill="url(#9iHXMuvV7brSX7hFt~tsna_Rdp3AydLFY2A_gr1)"
d="M43,15H5c-1.1,0-2-0.9-2-2v-2c0-1.1,0.9-2,2-2h38c1.1,0,2,0.9,2,2v2C45,14.1,44.1,15,43,15z"></path>
<linearGradient id="9iHXMuvV7brSX7hFt~tsnb_Rdp3AydLFY2A_gr2" x1="12.066" x2="34.891" y1="12.066" y2="34.891"
gradientUnits="userSpaceOnUse">
<stop offset=".237" stop-color="#3bc9f3"></stop>
<stop offset=".85" stop-color="#1591d8"></stop>
</linearGradient>
<path fill="url(#9iHXMuvV7brSX7hFt~tsnb_Rdp3AydLFY2A_gr2)"
d="M43,27H5c-1.1,0-2-0.9-2-2v-2c0-1.1,0.9-2,2-2h38c1.1,0,2,0.9,2,2v2C45,26.1,44.1,27,43,27z"></path>
<linearGradient id="9iHXMuvV7brSX7hFt~tsnc_Rdp3AydLFY2A_gr3" x1="12.066" x2="34.891" y1="24.066" y2="46.891"
gradientUnits="userSpaceOnUse">
<stop offset=".237" stop-color="#3bc9f3"></stop>
<stop offset=".85" stop-color="#1591d8"></stop>
</linearGradient>
<path fill="url(#9iHXMuvV7brSX7hFt~tsnc_Rdp3AydLFY2A_gr3)"
d="M43,39H5c-1.1,0-2-0.9-2-2v-2c0-1.1,0.9-2,2-2h38c1.1,0,2,0.9,2,2v2C45,38.1,44.1,39,43,39z"></path>
</svg>
<nav>
<h1 id="colocar-h1">Task List V1</h1>
<p class="intro">Seja bem vindo(a) ao meu, seu, nosso gerenciador de tarefas!</p>
<p class="intro">Em breve mais funcionalidades na V2, aguardem...</p>
<p class="intro" id="phrase">"Se você gastar muito tempo pensando sobre uma coisa, você nunca vai fazê-la."</p>
<a id="img1" target="_blank" href="https://github.com/alissonooliveiraofc/">
<img src="./img/icons8-github.svg" alt="Github">
</a>
<a id="img2" href="https://www.linkedin.com/in/alissonooliveira/" target="_blank" rel="noopener noreferrer">
<img src="./img/icons8-linkedin.svg" alt="Linkedin">
</a>
<p>Developer by Alisson Oliveira</p>
<!-- <button id="adiciona-task">+ Nova Lista</button> -->
</nav>
</aside>
</body>
</html>