-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
49 lines (48 loc) · 1.79 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Task Manager</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<div class="header">
<svg viewBox="0 0 1200 300">
<symbol id="s-text">
<text text-anchor="middle" x="50%" y="80%">Task Manager</text>
</symbol>
<g class = "g-ants">
<use xlink:href="#s-text" class="text-copy"></use>
<use xlink:href="#s-text" class="text-copy"></use>
<use xlink:href="#s-text" class="text-copy"></use>
<use xlink:href="#s-text" class="text-copy"></use>
<use xlink:href="#s-text" class="text-copy"></use>
</g>
</svg>
</div>
<div class="task-input">
<input type="text" id="taskName" placeholder="Task name">
<input type="datetime-local" id="dueDate">
<select id="priority">
<option value="high">High</option>
<option value="medium">Medium</option>
<option value="low">Low</option>
</select>
<button id="addTask">Add Task</button>
</div>
<div class="filters">
<label for="statusFilter">Filter by Status:</label>
<select id="statusFilter">
<option value="all">All</option>
<option value="todo">To Do</option>
<option value="inprogress">In Progress</option>
<option value="completed">Completed</option>
</select>
</div>
<ul id="taskList"></ul>
</div>
<script src="script.js"></script>
</body>
</html>