-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
32 lines (32 loc) · 1.06 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TODO LIST</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
<link rel="stylesheet" href="todolistproj/style.css">
</head>
<body>
<div class="container">
<h1>Todo List</h1>
<div class="input-container">
<input class="todo-input" placeholder="Add a new task...">
<button class="add-button">
<i class="fa fa-plus-circle"></i>
</button>
</div>
<div class="filters">
<div class="filter" data-filter="completed">Complete</div>
<div class="filter" data-filter="pending">Incomplete</div>
<div class="delete-all">Delete All</div>
</div>
<div class="todos-container">
<ul class="todos"></ul>
<img class="empty-image" src="todolistproj/image/image2.png">
</div>
</div>
<script src="todolistproj/script.js"></script>
</body>
</html>