-
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.68 KB
/
index.html
File metadata and controls
42 lines (42 loc) · 1.68 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">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Boost your efficiency with FluxTask! Discover precision productivity tools designed to streamline your workflow and enhance your performance today.">
<title>TaskMaster | Modern Productivity Tool</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
<link rel="icon" href="assests/favicon.ico">
<link rel="stylesheet" href="src/css/style.css">
</head>
<body>
<main class="todo-wrapper">
<header class="app-header">
<h1>Stay Organized</h1>
<p id="current-date"></p>
</header>
<section class="input-section">
<input
type="text"
id="todo-input"
placeholder="Add a new task..."
aria-label="New task"
/>
<button id="add-btn" type="submit">Add Task</button>
</section>
<section class="filter-section">
<button id="filter-all" class="filter-btn active">All</button>
<button id="filter-pending" class="filter-btn">Pending</button>
<button id="filter-completed" class="filter-btn">Completed</button>
</section>
<ul id="todo-list" class="task-container"></ul>
<footer class="app-stats">
<span id="items-left">0 tasks pending</span>
<button id="clear-completed">Clear Completed</button>
</footer>
</main>
<script src="src/js/script.js"></script>
</body>
</html>