-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
51 lines (51 loc) · 1.56 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
<!DOCTYPE html>
<html lang="es">
<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="./css/styles.css" />
</head>
<body>
<section>
<div class="container">
<div class="hero">
<h1>Lista de Tareas</h1>
<p>Cuales seran tus tareas de hoy?</p>
<form id="formulario">
<label for="task">
<input type="text" name="task" id="task" placeholder="Titulo" />
<input
type="text"
name="description"
id="description"
itemid="description"
placeholder="Descripción"
/>
</label>
<button type="submit" id="miBoton">
<i class="fa-solid fa-plus"></i>
</button>
</form>
<div class="li__container">
<h3>Tareas Pendientes</h3>
<div class="li_search">
<label for="search">
<i class="fa-solid fa-magnifying-glass"></i>
<input type="text" id="search" name="search" placeholder="Buscador"/>
</label>
</div>
<div class="task">
<ul id="list"></ul>
</div>
</div>
</div>
</div>
</section>
<script
src="https://kit.fontawesome.com/70436840f7.js"
crossorigin="anonymous"
></script>
<script src="./js/main.js"></script>
</body>
</html>