-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
69 lines (59 loc) · 2.75 KB
/
index.html
File metadata and controls
69 lines (59 loc) · 2.75 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TaskFlow | Premium Todo Experience</title>
<meta name="description" content="A sleek, modern todo list application to manage your tasks with ease and style.">
<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=Outfit:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="background-blobs">
<div class="blob blob-1"></div>
<div class="blob blob-2"></div>
<div class="blob blob-3"></div>
</div>
<main class="app-container">
<header>
<h1 id="app-title">TaskFlow - By Yama</h1>
<p class="subtitle">Focus on what matters</p>
</header>
<section class="todo-input-section">
<div class="input-wrapper">
<input type="text" id="todo-input" placeholder="What needs to be done?" autocomplete="off">
<button id="add-btn" aria-label="Add Task">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"
stroke="currentColor" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round">
<line x1="12" y1="5" x2="12" y2="19"></line>
<line x1="5" y1="12" x2="19" y2="12"></line>
</svg>
</button>
</div>
</section>
<section class="todo-list-section">
<div class="filters">
<button class="filter-btn active" data-filter="all">All</button>
<button class="filter-btn" data-filter="active">Active</button>
<button class="filter-btn" data-filter="completed">Completed</button>
</div>
<ul id="todo-list">
<!-- Todos will be injected here -->
</ul>
<div class="todo-stats">
<span id="items-left">0 items left</span>
<button id="clear-completed">Clear Completed</button>
</div>
</section>
<footer style="margin-top: 2rem; text-align: center;">
<a href="dev-info.html"
style="color: var(--text-dim); text-decoration: none; font-size: 0.8rem; transition: var(--transition);"
onmouseover="this.style.color='var(--primary)'"
onmouseout="this.style.color='var(--text-dim)'">Technical Details / Dev Info</a>
</footer>
</main>
<script src="script.js"></script>
</body>
</html>