-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
35 lines (32 loc) · 1.36 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
<!doctype html>
<html lang="en">
<head>
<title>Title</title>
<!-- 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">
<script src="index.js" defer></script>
</head>
<body>
<div class="container mt-5 ">
<div class="row">
<div class="col-md-4 bg-light">
<h3>Task Manager </h3>
<div class="form-group">
<label for="task">Task</label>
<input type="text" class="form-control" name="" id="task" aria-describedby="helpId" placeholder="">
<small id="helpId" class="form-text text-muted">Help text</small>
</div>
<button type="button" class="btn btn-primary" id="add">Add Task</button>
<button type="button" class="btn btn-primary" id="reset">Reser All</button>
</div>
<div class="col-md-2 bg-light">
<div id="ouput">
</div>
</div>
</div>
</div>
</body>
</html>