-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
91 lines (80 loc) · 5 KB
/
index.html
File metadata and controls
91 lines (80 loc) · 5 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<!DOCTYPE html>
<html lang="en" role="document">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>KittyTasker - A cute and useful to-do list app for cat lovers!</title>
<link rel="stylesheet" href="style.css">
<!--Fonts-->
<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=Poiret+One&display=swap" rel="stylesheet">
<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=Fascinate+Inline&family=Lobster&family=Poiret+One&display=swap" rel="stylesheet">
<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=Limelight&display=swap" rel="stylesheet">
<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=Limelight&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap" rel="stylesheet">
</head>
<body>
<div class="app-container" role="application" aria-label="KittyTasker cute to-do list app">
<header class="app-header" role="banner" aria-labelledby="">
<h1 class="app-title">KittyTasker</h1>
<p class="app-subtitle">Organise your day with the help of adorable cats and achieve your goals, one at a time!</p>
</header>
<div>
<img src="assets/Light brown kitten.png" alt="Light brown kitten with green eyes" id="light-brown-kitten-with-green-eyes">
</div>
<main class="main-card" role="main" aria-label="Task management interface">
<section class="task-form-container" role="form" aria-labelledby="form-heading">
<h2 id="form-heading" class="visually-hidden">Add New Task</h2>
<form id="task-form">
<div class="form-group">
<label for="task-input">Task Description</label>
<input type="text" id="task-input" name="task-input" placeholder="Enter your task here" required minlength="3">
</div>
<div class="form-group">
<label for="priority-select"></label>
<select id="task-priority" name="priority-select" aria-label="Select task priority">
<option value="medium" selected>Medium Priority</option>
<option value="low">Low Priority</option>
<option value="high">High Priority</option>
</select>
<label for="task-date">Due Date</label>
<input type="date" id="task-date" name="task-date" aria-label="Select task due date" required>
</div>
<span class="error" id="form-error"></span>
<div class="form-actions">
<button type="submit" class="add-btn">Add Task</button>
</div>
</form>
</section>
<article class="tasks-container" role="region" aria-label="Task list containter">
<div class="section-header">
<h2 id="task-heading" class="section-title">My Tasks</h2>
<nav role="navigation" aria-label="Task filter options">
<div role="tablist" aria-label="Fliter tasks">
<button class="filter-btn" role="tab" aria-selected="true" aria-controls="task-list">All</button>
<button class="filter-btn" role="tab" aria-controls="task-list">Active</button>
<button class="filter-btn" role="tab" aria-controls="task-list">Completed</button>
</div>
</nav>
</div>
<ul id="task-list" role="tabpanel" aria-live="polite">
</ul>
<div class="task-summary" role="status" aria-live="polite">
<p><span id="items-left">0</span></p>
<button id="clear-completed-btn">Clear completed</button>
</div>
</article>
</main>
<footer class="app-footer" role="contentinfo">
<p>© 2026 FluffzTheRagdoll</p>
</footer>
</div>
<script src="app.js"></script>
</body>
</html>