-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
45 lines (36 loc) · 1.37 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
<!DOCTYPE html>
<html lang="es">
<head>
<!-- META etiquetas -->
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="keywords" content="todo, fedeperin, todo list, vanilla js">
<meta name="description" content="Una ToDo list hecha con vanilla javascript, HTML y CSS">
<!-- Título -->
<title>Todo List</title>
<!-- Link al ícono del ✔ -->
<link rel="icon" href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><text y='.9em' font-size='90'>✔</text></svg>">
<!-- Bootstrap Icons -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.4.1/font/bootstrap-icons.min.css">
<!-- CSS -->
<link rel="stylesheet" href="./estilos.css">
<!-- JS con atributo defer para que se cargue después que todo -->
<script src="./app.js" defer></script>
</head>
<body>
<!-- Título -->
<h1>ToDo</h1>
<!-- Formulario -->
<form>
<input type="text" placeholder="Nuevo Item...">
<button type="submit">Agregar</button>
</form>
<!-- Contenedor de items -->
<div class="items"></div>
<!-- Eliminar todo -->
<button class="eliminar-todo">Eliminar todo</button>
<!-- GitHub -->
<i class="bi bi-github"></i>
</body>
</html>