-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
27 lines (24 loc) · 974 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>ToDo List</title>
<link rel="stylesheet" href="assets/css/todos.css">
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<script type="text/javascript" src="assets/js/lib/jquery-3.3.1.js">
</script>
</head>
<body>
<div class="" id="container">
<h1>To-Do List <span id="toggle-form"><i class="fa fa-plus"></i></span></h1>
<input type="text" name="" value="" placeholder="Add new Todo">
<ul>
<li><span><i class="fa fa-trash"></i></span> Go to potions class</li>
<li><span><i class="fa fa-trash"></i></span> Buy new robes</li>
<li><span><i class="fa fa-trash"></i></span> Visit Hagrid</li>
</ul>
</div>
<script type="text/javascript" src="assets/js/todos.js"></script>
</body>
</html>