-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
51 lines (49 loc) · 2.11 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="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">
<!-- Bootstrap only -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<!-- FontAwesome Icons -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css" integrity="sha512-Fo3rlrZj/k7ujTnHg4CGR2D7kSs0v4LLanw2qksYuRlEzO+tcaEPQogQ0KaoGN26/zrn20ImR1DfuLWnOo7aBA==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<!-- CSS -->
<link rel="stylesheet" href="style.css">
<title>toDo List</title>
<script defer src="./index.js"></script>
</head>
<body>
<div class="container">
<div class="container-fechas">
<div class="date">
<div class="dateRight">
<div id="dateNumber"></div>
<div>
<div id="dateMonth"></div>
<div id="dateYear"></div>
</div>
</div>
<div id="dateText"></div>
</div>
</div>
<h1 class="text-center">Lista de tareas</h1>
<form id="formulario" class="d-flex flex-column">
<input type="text" placeholder="Tarea" class="form-control my-2" id="input" autofocus>
<button class="btn btn-primary btn-block" type="submit">Agregar</button>
</form>
<div id="lista-tareas" class="mt-3">
</div>
</div>
<!-- Template -->
<template id="template">
<div class="alert alert-warning d-flex justify-content-between align-items-center">
<p class="m-0">Tarea 1</p>
<h3 class="m-0">
<i class="fas fa-check-circle text-success" role="button"></i>
<i class="fas fa-minus-circle text-danger" role="button"></i>
</h3>
</div>
</template>
</body>
</html>