-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
52 lines (42 loc) · 1.44 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap" rel="stylesheet">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;500&display=swap" rel="stylesheet">
<link rel="manifest" href="manifestPlantilla.json">
<title>TO DO LIST</title>
</head>
<body>
<header>
<h1>
Mis pendientes
</h1>
<h4 id="fecha">
27 de Marzo
</h4>
</header>
<section>
<article >
<input id="nuevaTarea" type="text" placeholder="Escribe aquí">
<button onclick="agregar()">+</button>
</article>
<br><br><br><br><h3>Por hacer</h3>
<nav class="porhacer">
</nav><br>
<h3>Terminado</h3>
<nav class="terminado">
</nav>
</section>
</body>
<script type="text/javascript" src="funciones.js"></script>
<script type="text/javascript">
window.addEventListener('load',init);
</script>
</html>