-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
29 lines (23 loc) · 944 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<title>Todo Project</title>
<link rel="stylesheet" type="text/css" href="assets/css/todo.css">
<link href="https://fonts.googleapis.com/css?family=Roboto:400,500,700" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<script type="text/javascript" src="assets/js/lib/jQuery-3.2.1.min.js"></script>
</head>
<body>
<div class="container">
<h1>TO-DO List <i class="fa fa-plus"></i></h1>
<input type="text" name="new todo" placeholder="Add a todo">
<ul>
<li> <span><i class="fa fa-trash"></i></span> Go to college</li>
<li> <span><i class="fa fa-trash"></i></span> Repair watch</li>
<li> <span><i class="fa fa-trash"></i></span> Visit library</li>
<li> <span><i class="fa fa-trash"></i></span> Exercise</li>
</ul>
</div>
<script type="text/javascript" src="assets/js/todo.js"></script>
</body>
</html>