-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
47 lines (45 loc) · 1.52 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
<!DOCTYPE html>
<html lang="en">
<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="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Prompt:ital,wght@1,100&display=swap"
rel="stylesheet"
/>
<title>Lista De Tareas</title>
<script
src="https://kit.fontawesome.com/c1572be89d.js"
crossorigin="anonymous"
></script>
<link rel="stylesheet" href="style.css" />
<title>Lista De Tareas</title>
</head>
<body>
<div class="container">
<div class="Presentacion">
<div id="fecha">Viernes 1 De Noviembre</div>
<h1>Hola, Como amaneciste?</h1>
<span>Vamos a cumplir tus metas</span>
</div>
<div class="agregar-tarea">
<input type="text" id="input" placeholder="Agregar una tarea" />
<i id="enter" class="fa-sharp fa-solid fa-plus"></i>
</div>
<div class="seccion-tarea">
<h3>Tareas Pendientes</h3>
<ul id="lista">
<!-- <li>
<i class="fa-sharp fa-regular fa-circle" data-="realizado"id="0"></i>
<p class="text " > ari re puta</p>
<i class="fa-sharp fa-solid fa-trash" data-="eliminado" id="0"></i>
</li> -->
</ul>
</div>
</div>
</body>
<script src="script.js"></script>
</html>