-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
37 lines (30 loc) · 1.44 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 - Alberto Roldan</title>
<link rel="stylesheet" type="text/css" href="assets/css/todos.css">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap" rel="stylesheet">
<script src="https://kit.fontawesome.com/5b176a6be4.js" crossorigin="anonymous"></script>
<script type="text/javascript" src="assets/js/lib/jquery-3.5.0.min.js"></script>
<!-- Fav Icon -->
<link rel="shortcut icon" type="image/x-icon" href="https://albertoroldanq.com/imgs/favicon.ico" />
</head>
<body>
<div id="container">
<h1>To-Do List <i class="fas fa-plus"></i></h1>
<input type="text" placeholder="Add New Todo">
<ul>
<li><span><i class="fa fa-trash"></i> </span> Turn on coffee machine</li>
<li><span><i class="fa fa-trash"></i> </span> Wait until the green light is fixed</li>
<li><span><i class="fa fa-trash"></i> </span> Place your cup</li>
<li><span><i class="fa fa-trash"></i> </span> Press the button</li>
<li><span><i class="fa fa-trash"></i> </span> Wait until it's done</li>
<li><span><i class="fa fa-trash"></i> </span> Turn off the coffe machine</li>
<li><span><i class="fa fa-trash"></i> </span> Enjoy your coffee</li>
</ul>
</div>
<script type="text/javascript" src="assets/js/todos.js"></script>
</body>
</html>