forked from kefenis/FinalProject
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
45 lines (40 loc) · 1.46 KB
/
Copy pathindex.html
File metadata and controls
45 lines (40 loc) · 1.46 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="./asset/css/style.css" />
<title>Document</title>
</head>
<body>
<div id="container" class="one">
<h1>Task Master</h1>
<section id="taskform" >
<form>
<label for="fname">Task Name:</label><br />
<input type="text" id="fname" name="fname" /><br /><br />
<label for="lname">Task Description:</label><br /><br />
<textarea id="w3review" name="w3review" rows="4" cols="30"></textarea
><br /><br />
<!-- <div class="two"> -->
<label for="assigned">Assigned To:</label><br />
<input type="text" id="assigned" name="assigned" /><br><br>
<label for="start">
Enter the Date:
</label>
<br><br>
<input type="date" name="begin"
placeholder="dd-mm-yyyy" value=""
min="1997-01-01" max="2030-12-31">
<br><br>
<button value="">Add Task</button>
</form>
</section>
<section id="taskform">
<section id="taskduedate" >Due date calender</section>
<section>Tasks</section>
</div>
<script src="./asset/js/script.js"></script>
</body>
</html>