forked from Avdhesh-Varshney/WebMasterLog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
34 lines (34 loc) · 1.11 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Advanced Task Reminder</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<header>
<h1>Task Reminder</h1>
</header>
<main>
<div class="task-input">
<input type="text" id="task" placeholder="Enter your task here...">
<input type="date" id="dueDate">
<input type="time" id="dueTime">
<select id="priority">
<option value="Low">Low</option>
<option value="Medium">Medium</option>
<option value="High">High</option>
</select>
<button id="addTaskBtn">Add Task</button>
</div>
<ul id="taskList"></ul>
</main>
<footer>
<p>© 2024 Task Reminder. All rights reserved.</p>
</footer>
</div>
<script src="script.js"></script>
</body>
</html>