forked from accesibleprogramacion/to-do
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
48 lines (48 loc) · 1.33 KB
/
index.html
File metadata and controls
48 lines (48 loc) · 1.33 KB
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
<!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" />
<title>Lista de tareas</title>
<link
href="https://fonts.googleapis.com/css2?family=Lato:wght@100;400;900&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="styles.css" />
<script src="script.js" type="text/javascript" defer></script>
</head>
<body>
<div class="list roundBorder">
<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>
<form onsubmit="addNewTask(event)">
<input
type="text"
name="taskText"
autocomplete="off"
placeholder="Nuevo producto"
class="roundBorder"
id="nomProd"
/>
<button type="submit" class="addTaskButton">+</button>
<button
type="button"
class="orderButton roundBorder"
onclick="renderOrderedTasks()"
>
Ordenar
</button>
</form>
<div id="tasksContainer"></div>
</div>
</body>
</html>