-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (39 loc) · 1.67 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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Lista de Tareas</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Lato&family=Roboto&display=swap">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0">
<link rel="stylesheet" href="styles/index.css">
<script src="scripts/index.js" defer></script>
<meta name="theme-color" content="#a569bd">
<link rel="shortcut icon" href="assets/images/favicon.png" type="image/x-icon">
<meta name="author" content="Jhonatan Seminario">
</head>
<body>
<div class="container">
<h1 class="title">Mis Tareas Pendientes</h1>
<h2 class="subtitle"></h2>
<input type="text" placeholder="¿Qué planes tienes?">
<button id="botonAgregar">AÑADIR</button>
<button id="botonLimpiar" title="Eliminar todas las tareas">
<span class="material-symbols-outlined">close</span>
</button>
<button id="botonEliminar" title="Eliminar todas las tareas como completadas">
<span class="material-symbols-outlined">delete</span>
</button>
<button id="botonCompletar" title="Marcar todas las tareas como completadas">
<span class="material-symbols-outlined">check_circle</span>
</button>
<ol></ol>
<div class="lista-vacia">
<img class="icono" src="assets/images/image.webp" alt="Portapapeles con una hoja en blanco">
<p class="consejo"></p>
</div>
</div>
</body>
</html>