-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
42 lines (42 loc) · 1.34 KB
/
index.html
File metadata and controls
42 lines (42 loc) · 1.34 KB
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
40
41
42
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Listify</title>
<link rel="stylesheet" href="css/style.css">
<link href="https://fonts.googleapis.com/css2?family=Jost&display=swap" rel="stylesheet">
</head>
<body>
<link href="https://fonts.googleapis.com/css2?family=Jost&display=swap" rel="stylesheet">
<h1>
Listify
</h1>
<div class="row limiter">
<div class="row insert">
<input type="checkbox" id="js-toggle-all" class="toggle">
<input type="text" id="js-insert" placeholder="Enter a task">
</div>
<div class="row bar" id="js-bar">
<div class="col-1-4">
<span class="total" id="js-total">0 tasks left</span>
</div>
<div class="col-1-2">
<ul class="filter" id="js-filters">
<li><a href="#/all" class="button selected">All</a></li>
<li><a href="#/active" class="button">Active</a></li>
<li><a href="#/completed" class="button">Complete</a></li>
</ul>
</div>
<div class="col-1-4">
<button class="button button--clear" id="js-clear-completed">Clear Completed Tasks</button>
</div>
</div>
<div class="row">
<ul class="list" id="js-list"></ul>
</div>
</div>
<script src="js/helpers.js"></script>
<script src="js/stores.js"></script>
<script src="js/app.js"></script>
</body>
</html>