-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (25 loc) · 1.09 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">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="assets/css/style.css">
<link href='https://fonts.googleapis.com/css?family=Roboto:400,700,500' rel="stylesheet" type="text/css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<script src="https://code.jquery.com/jquery-3.3.1.min.js"></script>
<title>Todo List</title>
</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 class="incomplete"> Task 1 <span class="delete"><i class="fa fa-trash"></i></span></li>
<li class="incomplete"> Task 2 <span class="delete"><i class="fa fa-trash"></i></span></li>
<li class="incomplete"> Task 3 <span class="delete"><i class="fa fa-trash"></i></span></li>
</ul>
</div>
<script type="text/javascript" src="assets/js/script.js"></script>
</body>
</html>