-
Notifications
You must be signed in to change notification settings - Fork 0
/
Todo.html
31 lines (25 loc) · 1.23 KB
/
Todo.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Todo List Project</title>
<link href="https://fonts.googleapis.com/css?family=Roboto:400,700&display=swap" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.1/css/all.css" integrity="sha384-50oBUHEmvpQ+1lW4y57PTFmhCaXp0ML5d60M1M7uH2+nqUivzIebhndOJK28anvf" crossorigin="anonymous">
<script src="https://code.jquery.com/jquery-3.4.1.min.js" integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo=" crossorigin="anonymous"></script>
<link rel="stylesheet" type="text/css" media="screen" href="Todo.css" />
</head>
<body>
<div id = 'container'>
<h1>To-do List <i class="fa fa-plus"></i></h1>
<input type="text" placeholder="Add New Todo...">
<ul>
<li><span><i class='fa fa-trash'></i></span> New Robes</li>
<li><span><i class='fa fa-trash'></i></span> Visit Dumbledore</li>
<li><span><i class='fa fa-trash'></i></span> Feed Hedwig</li>
</ul>
</div>
<script src="Todo.js"></script>
</body>
</html>