-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtask-list.html
More file actions
25 lines (25 loc) · 871 Bytes
/
task-list.html
File metadata and controls
25 lines (25 loc) · 871 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Task List - Task Manager</title>
<link rel="stylesheet" href="styles/global.css">
<link rel="stylesheet" href="styles/tasks.css">
</head>
<body>
<div class="container container-task">
<a href="create-task.html" class="new-task-button">+ New Task</a>
<h2>Tasks</h2>
<div class="filter-buttons">
<button class="active" data-filter="all">All</button>
<button data-filter="done">Done</button>
<button data-filter="not-done">Not Done</button>
</div>
<div id="task-list" class="task-list">
<!-- Task items will be appended here dynamically -->
</div>
</div>
<script src="index.js"></script>
</body>
</html>