-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
22 lines (22 loc) · 857 Bytes
/
index.html
File metadata and controls
22 lines (22 loc) · 857 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html>
<head>
<title>To Do list</title>
<link rel="stylesheet" type="text/css" href="todo.css">
<link href="https://fonts.googleapis.com/css?family=Roboto:400,500,700" rel="stylesheet">
<script type="text/javascript" src="jquery-3.3.1.min.js"></script>
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.css">
</head>
<body>
<div id="container">
<h1>TO-DO LIST<i class="fa fa-plus"></i></h1>
<input type="text" placeholder="Add New To Do">
<ul>
<li><span><i class="fa fa-trash"></i></span> Go to poitions class</li>
<li><span><i class="fa fa-trash"></i></span> Visit Hagrid</li>
<li><span><i class="fa fa-trash"></i></span> Take notes</li>
</ul>
</div>
<script type="text/javascript" src="todo.js"></script>
</body>
</html>