-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
53 lines (51 loc) · 2.14 KB
/
index.html
File metadata and controls
53 lines (51 loc) · 2.14 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
46
47
48
49
50
51
52
53
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>JavaScript Task App</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.6.2/dist/css/bootstrap.min.css" integrity="sha384-xOolHFLEh07PJGoPkLv1IbcEPTNtaed2xpHsD9ESMhqIYd0nLMwNLD69Npy4HI+N" crossorigin="anonymous">
</head>
<body>
<!-- NAVIGATION -->
<nav class="navbar navbar-light bg-light">
<div class="container">
<a href="#" class="navbar-brand">Task App</a>
</div>
</nav>
<!-- MAIN CONTENT -->
<div class="container">
<div class="row pt-5">
<div class="col-md-4">
<div class="card">
<div class="card-body">
<form id="formTask">
<div class="form-group">
<input type="text" id="title" placeholder="Add A todo" class="form-control">
</div>
<div class="form-group">
<textarea id="description" cols="80" rows="8" class="form-control" placeholder="Add A Description"></textarea>
</div>
<div class="form-group">
<label for="dueDate">Due Date:</label>
<input type="date" id="dueDate" class="form-control">
</div>
<div class="form-group">
<label for="dueTime">Due Time:</label>
<input type="time" id="dueTime" class="form-control">
</div>
<button type="submit" class="btn btn-primary btn-block">
Save
</button>
</form>
</div>
</div>
</div>
<div class="col-md-8">
<div id="tasks"></div>
</div>
</div>
</div>
<!-- SCRIPTS -->
<script src="app.js"></script>
</body>
</html>