-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
84 lines (80 loc) · 2.82 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="./favicon.ico" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- FONTAWESOME -->
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.15.3/css/all.css"
integrity="sha384-SZXxX4whJ79/gErwcOYf+zWLeJdY/qpuqC4cAa9rOGUstPomtqpuNWT9wdPEn2fk"
crossorigin="anonymous"
/>
<!-- CSS BOOTSTRAP -->
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC"
crossorigin="anonymous"
/>
<!-- CSS -->
<link rel="stylesheet" href="./css/style.css" />
<title>To Do List</title>
</head>
<body>
<div class="container d-flex flex-column justify-content-center">
<!-- formulario -->
<div class="row d-flex justify-content-center g-3 mt-2">
<div class="col-auto">
<input
type="text"
class="form-control"
id="task"
placeholder="Ingrese Tarea"
/>
</div>
<div class="col-auto">
<select
class="form-select"
aria-label="Default select example"
id="prioridad"
>
<option selected disabled>Prioridad</option>
<option value="Alta">Alta</option>
<option value="Media">Media</option>
<option value="Baja">Baja</option>
</select>
</div>
<div class="col-auto">
<button type="submit" class="btn btn-violet mb-3" id="agregar">
Agregar +
</button>
</div>
</div>
<!-- fin -->
<div class="mt-3 row">
<!-- lista de tareas -->
<div class="col-12 d-flex justify-content-center align-items-center">
<ul class="list-group col-12 col-md-8" id="lista-de-tareas"></ul>
</div>
<div class="col-12 mt-3 mb-1 justify-content-start align-items-center flex-column" id="container-subtareas">
<h4 class="col-12 col-md-8 subTaskTitle d-inline text-start" id="subTaskTitle"></h4>
<ul class="list-group col-12 col-md-8" id="lista-de-subtareas"></ul>
<form class="col-12 col-md-8" id="subTaskForm">
<input
type="text"
id="subtask"
placeholder="Ingrese Sub-Tarea"
><button class="subTaskButton" id="subTaskButton">+</button>
</input>
</form>
</div>
</div>
<!-- fin -->
</div>
<!-- JS -->
<script src="./js/index.js"></script>
</body>
</html>