-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
39 lines (38 loc) · 1.48 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
38
39
<!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">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="styles/style.css">
<script async src="js/main.js"></script>
<title>Todo App</title>
</head>
<body>
<div class="container">
<!-- Input -->
<header>
<h1>todos</h1>
<div class="input-field">
<i id="toggle-btn" class="fa fa-chevron-down icon" aria-hidden="true"></i>
<input type="text" id="addTask" placeholder="What needs to be done?">
</div>
</header>
<!-- Tasks -->
<section class="tasks-container">
<main id="task-list" class="tasks">
</main>
<!-- Filters -->
<footer class="app-footer">
<span id="todo-count" class="todo-count">0 Task left</span>
<ul class="filters">
<li id="all-tasks"><a href="#/All">All</a></li>
<li id="active-tasks"><a href="#/Avtive">Active</a></li>
<li id="completed-tasks"><a href="#/Completed">Completed</a></li>
</ul>
<a id="clear-completed" class="clear-btn" href="">Clear completed</a>
</footer>
</section>
</div>
</html>