-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
28 lines (25 loc) · 868 Bytes
/
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
<!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>TodoList IndexedDB</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="messages">
</div>
<div class="container">
<p class="title-tasks">Todo List con IndexedDB</p>
<div class="form">
<form action="" id="formulario">
<input type="text" name="nameList" id="nameList" placeholder="anota tu tarea" title="escribe tu nota">
<button type="submit" id="btnSend" title="Click para agregar tu nota">Agregar</button>
</form>
</div>
<div id="tasks" class="tasks"></div>
</div>
<script src="js/app.js"></script>
</body>
</html>