-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (34 loc) · 1.56 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>To-Do List by: Alejandro Sánchez</title>
<link rel="apple-touch-icon" sizes="180x180" href="img/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="img/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="img/favicon-16x16.png">
<link rel="manifest" href="img/site.webmanifest">
<link rel="stylesheet" href="css/styles.css">
<link rel="stylesheet" href="css/normalize.css">
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700;800&display=swap" rel="stylesheet">
<script src="https://kit.fontawesome.com/5dd728488a.js" crossorigin="anonymous"></script>
</head>
<body>
<div class="container">
<div class="block">
<h1>To-Do List ✅</h1>
<p class="subtitle">⬇️ Add a task below ⬇️</p>
<form action="#" id="form" class="formulario">
<input type="text" placeholder="Go to the bank..." name="todo" class="input-task" id="todo">
<button class="btn-add" id="btn-send" type="submit">Add</button>
</form>
<div class="tasks">
<ul id="task-list" style="list-style-type: none">
</ul>
</div>
</div>
<p class="copy">Made by: <a href="https://github.com/alejandroszg" target="_blank">Alejandro Sánchez</a></p>
</div>
<script src="js/app.js"></script>
</body>
</html>