-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
52 lines (43 loc) · 1.37 KB
/
index.html
File metadata and controls
52 lines (43 loc) · 1.37 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
43
44
45
46
47
48
49
50
51
52
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Task Flow</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- App Container-->
<div class="app">
<!-- Header -->
<header>
<h1>TaskFlow</h1>
<p>Your simple task and habit tracker</p>
</header>
<!-- Task input -->
<section class="task-input">
<input type="text" id="taskInput" placeholder="Add a new task...">
<button id="addTaskBtn">Add Task</button>
</section>
<!-- Task list -->
<section class="task-list">
<ul id="taskList">
<!-- Tasks will be rendered here via JS -->
</ul>
</section>
<section>
<div class="filters">
<button data-filter="all" class="filter-btn active">All</button>
<button data-filter="active" class="filter-btn">Active</button>
<button data-filter="completed" class="filter-btn">Completed</button>
</div>
<p id="taskCount"> 0 tasks </p>
</section>
<!-- Footer -->
<footer>
<p>© 2025 TaskFlow. All rights reserved.</p>
</footer>
</div>
<script src="index.js"></script>
</body>
</html>