-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtaskD.html
32 lines (32 loc) · 984 Bytes
/
taskD.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Task Details - TaskPulse</title>
<link rel="stylesheet" href="stylesD.css">
</head>
<body>
<header>
<h1>Task Details</h1>
</header>
<main>
<section class="task-details">
<h2>Task Name</h2>
<p>Task description goes here.</p>
<p>Due Date: <span id="dueDate">January 1, 2024</span></p>
<p>Status: <span id="taskStatus">Incomplete</span></p>
</section>
<section class="task-actions">
<h2>Actions</h2>
<button id="markAsComplete">Mark as Complete</button>
<button id="editTask">Edit Task</button>
<button id="deleteTask">Delete Task</button>
</section>
</main>
<footer>
<p>© 2023 TaskPulse</p>
</footer>
<script src="scriptD.js"></script>
</body>
</html>