-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
26 lines (23 loc) · 983 Bytes
/
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
<!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="css/styles.css" media="screen" title="no title">
<title>Todo List</title>
</head>
<body>
<section class="app">
<input type="text" data-type="addTodo" placeholder="What do you need to do?" id="todo" name="todo" value="">
<header>
<button type="button" class="filter" name="button" data-type="filterAll">All</button>
<button type="button" class="filter" name="button" data-type="filterCompleted">Completed</button>
<button type="button" class="filter" name="button" data-type="filterActive">Active</button>
</header>
<ul id="todos"></ul>
</section>
<script src="js/store.js" charset="utf-8"></script>
<script src="js/app.js" charset="utf-8"></script>
</body>
</html>