-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (27 loc) · 973 Bytes
/
index.html
File metadata and controls
30 lines (27 loc) · 973 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>Task Tracker</title>
</head>
<body>
<div class="container">
<h1>Task Tracker</h1>
<form id="taskForm">
<label for="taskName">Task name:</label><br>
<input type="text" id="taskName" name="taskName"><br>
<label for="taskDescription">Description:</label><br>
<textarea id="taskDescription" name="taskDescription"> </textarea><br><br>
<label for="taskDeadline">Task deadline:</label><br>
<input type="date" id="taskDeadline" name="taskDeadline"><br><br>
<button type="submit">Add Task</button>
</form>
<table id="taskTable">
<!-- Task table contents go here -->
</table>
</div>
<script src="script.js"></script>
</body>
</html>