-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
50 lines (41 loc) · 1.65 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous" />
<title>Classic ToDo List</title>
</head>
<body>
<div class="form-section mt-5">
<div class="container">
<div class="row">
<div class="col col-8 mx-auto">
<div class="card">
<div class="card-body">
<h5 class="card-title">Add new task</h4>
<form name="addTask">
<input type="text" name="title" id="title" class="form-control"
placeholder="Task title" />
<input type="text" name="body" id="body" class="form-control mt-3"
placeholder="Task body" />
<button type="submit" class="btn btn-primary mt-4">Add Task</button>
</form>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="task-list-section mt-5">
<div class="container">
<ul class="list-group">
</ul>
</div>
</div>
<script src="app.js"></script>
</body>
</html>