-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathTo-Do-List.html
97 lines (80 loc) · 2.89 KB
/
To-Do-List.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>To Do List</title>
<!-- Bootstrap CSS only -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-Zenh87qX5JnK2Jl0vWa8Ck2rdkQ2Bzep5IDxbcnCeuOxjzrPF/et3URy9Bv1WTRi" crossorigin="anonymous">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">To Do List</div>
<div class="fixed-bottom">This is bottom text</div>
<div class="form">
<h2>Tasks form</h2>
<form action="">
<label>Name:</label>
<input type="text" placeholder="Enter Full Name" required>
<br> <br>
<label>Description:</label>
<input type="text" placeholder="Description" required>
<br> <br>
<label>Assigned To:</label>
<input type="text" placeholder="Assigned to" required>
<br> <br>
<label>Enter due date:</label>
<input type="text" placeholder="Enter Due Date" required>
<br> <br>
<label for="cars">Drop Box:</label>
<select name="task1" id="task1"></select> <div class="row justify-content-start"> <button type="button" class="btn btn-success">Submit</button> </div>
<br> <br>
<div class="container-fluid">
<div class="row align-items-top">
<div class="col-2">
Task 1 <br>
Name: Cameron <br>
Description: Take out Rubish <br>
Assigned To: Cameron Pubben <br>
Due Date: 30/10/2022 <br>
Status: Incomplete <br>
</div>
<div class="col-2">
Task 2 <br>
Name: Khushboo Agrawal <br>
Description: Clean up kitchen <br>
Assigned To: Khushboo <br>
Due Date: 29/10/2022 <br>
Status: Incomplete <br>
</div>
<div class="col-2">
Task 3 <br>
Name: Syndy <br>
Description: Clean and Wax Car <br>
Assigned To: Syndy <br>
Due Date: 28/10/2022 <br>
Status: Incomplete <br>
</div>
<div class="col-2">
Task 4 <br>
Name: Cameron Pubben <br>
Description: Do Weekly shopping <br>
Assigned To: Cameron <br>
Due Date: 30/10/2022 <br>
Status: Incomplete <br>
</div>
<div class="col-2">
Task 5 <br>
Name: Syndy <br>
Description: Prepare Birthday party <br>
Assigned To: Syndy <br>
Due Date: 06/11/2022 <br>
Status: Incomplete <br>
</div>
</div>
</div>
</form>
</div>
</label>
</body>
</html>