-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
42 lines (36 loc) · 1.18 KB
/
Copy pathindex.html
File metadata and controls
42 lines (36 loc) · 1.18 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
<!DOCTYPE html>
<html lang="en">
<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">
<link rel="stylesheet" href="style.css">
<script src="https://kit.fontawesome.com/5499ffa70a.js" crossorigin="anonymous"></script>
<title>To Do List</title>
</head>
<body>
<main>
<div class="toDoList">
<div class="logo">
<h1>To Do List</h1>
</div>
<div class="text-input">
<input id="entrada" maxlength="35" type="text" autocomplete="off" placeholder="Crear una nueva tarea">
<i class="fa-solid fa-plus"></i>
</div>
<div class="li-container">
<ul>
</ul>
</div>
<div class="empty">
<span>No hay tareas pendientes</span>
</div>
</div>
</main>
<footer>
<h4>Desarrollado por <a href="https://github.com/ima0127?tab=repositories" target="blank">Ismael Peralta</a></h4>
<h4>2022</h4>
</footer>
<script src="script.js"></script>
</body>
</html>