-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtodo.html
More file actions
39 lines (38 loc) · 1.3 KB
/
todo.html
File metadata and controls
39 lines (38 loc) · 1.3 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
<!-- ejecutar en consola: -->
<!-- json-server --watch db.json --port 3000 -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>ToDo ListApp</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/7.0.0/css/all.min.css" />
<link rel="stylesheet" href="styles/style.css" />
<link rel="stylesheet" href="styles/card.css">
<link rel="stylesheet" href="styles/index.css">
</head>
<body>
<div class="container">
<div class="todo-app">
<section class="image-wrapper">
<img class="logo" src="img/logo.png" alt="Logotipo" width="300px">
<img class="empty-image" src="./img/empty.png" width="300px" alt="empty" />
</section>
<form class="input-area">
<input type="text" id="task-input" placeholder="Añade una nueva tarea" />
<label class="priority-toggle">
<input type="checkbox" id="priority-toggle">
Alta
</label>
<button type="submit" id="add-task-btn">
<i class="fa-solid fa-plus"></i>
</button>
</form>
<div class="todos-container">
<ul id="task-list"></ul>
</div>
</div>
</div>
<script type="module" src="./js/main.js"></script>
</body>
</html>