-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
35 lines (30 loc) · 1.12 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
<!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">
<title>ToDoList</title>
<!-- Font -->
<link href="https://fonts.googleapis.com/css?family=Roboto:400,500" rel="stylesheet">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.2/css/all.css">
<!-- Style -->
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<section class="todo-list">
<h1 class="todo-list__title">To-Do List</h1>
<div class="todo-list__header">
<input class="todo-list__input" type="text" placeholder="Add task here...">
<button class="todo-list__btn-add"><i class=" far fa-plus-square"></i></button>
</div>
<ul class="todo-list__items-done">
<h2 class="todo-list__items-title">Done</h2>
</ul>
<ul class="todo-list__items-undone">
<h2 class="todo-list__items-title">Not Done</h2>
</ul>
<script src="js/app-bable.js"></script>
</section>
</body>
</html>