-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (33 loc) · 1.01 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Personal Task Manager</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<div class="container">
<h1>Task Manager</h1>
<!-- Task Form -->
<div class="task-form">
<h3>Add Task</h3>
<input type="text" id="task-title" placeholder="Task Title" required />
<textarea id="task-desc" placeholder="Task Description"></textarea>
<input type="date" id="task-due-date" required />
<select id="task-priority">
<option value="Low">Low</option>
<option value="Medium">Medium</option>
<option value="High">High</option>
</select>
<button id="add-task-btn">Add Task</button>
</div>
<!-- Task List -->
<div class="task-list">
<h3>Your Tasks</h3>
<ul id="task-list"></ul>
</div>
</div>
<script src="app.js"></script>
</body>
</html>