-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
47 lines (44 loc) · 2.09 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">
<meta name="description" content="Página de Lista de Tareas">
<meta name="keywords" content="lista, tareas, anotaciones, recordatorios">
<meta name="author" content="Nicolas Herrera">
<title>Lista de Tareas</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-KK94CHFLLe+nY2dmCWGMq91rCGa5gtU4mk92HdvYe+M/SXH301p5ILy+dN9+nJOZ" crossorigin="anonymous">
<link rel="stylesheet" href="./css/style.css">
</head>
<body>
<main class="container-fluid">
<section class="row text-center mx-2 my-1">
<h1 class="fw-bold">Lista de Tareas</h1>
<form id="formTarea" class="col-sm-12 col-md-6 m-auto">
<div class="input-group">
<input type="text" name="inputTarea" id="inputTarea" placeholder="Ingresa aquí tu tarea" maxlength="50"
class="form-control form-control-sm" autocomplete="off" required>
<button class="btn" type="submit" id="btnAgregarTarea"><i class="bi bi-plus-lg"></i></button>
</div>
</form>
</section>
<section class="row row-cols-1 row-cols-sm-2 row-cols-md-3 row-cols-lg-4 g-3 m-2 justify-content-center"
id="contenedorTareas">
<p class="lead text-center m-1">No tienes tareas pendientes</p>
</section>
</main>
<footer class="mt-auto text-center">
<div class="container">
<p>© Todos los derechos reservados. Hecho con ❤ por Nicolás Herrera</p>
</div>
</footer>
<script src="https://cdn.jsdelivr.net/npm/sweetalert2@11"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-ENjdO4Dr2bkBIFxQpeoTz1HIcje39Wm4jDKdf19U8gI4ddQ3GYNS7NTKfAdVQSZe"
crossorigin="anonymous"></script>
<script src="./js/main.js"></script>
</body>
</html>