-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
65 lines (50 loc) · 2.17 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<!DOCTYPE html>
<html>
<head>
<title></title>
<!-- CSS only -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-BmbxuPwQa2lc/FVzBcNJ7UAyJxM6wuqIj61tLrc4wSX0szH/Ev+nYRRuWlolflfl" crossorigin="anonymous">
<link rel="stylesheet" href="https://pro.fontawesome.com/releases/v5.10.0/css/all.css" integrity="sha384-AYmEC3Yw5cVb3ZcuHtOA93w35dYTsvhLPVnYs9eStHfGJvOvKxVfELGroGkvsg+p" crossorigin="anonymous"/><!-- JavaScript Bundle with Popper -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-b5kHyXgcpbZJO/tY9Ul7kGkf1S0CWuKcCD38l8YkeH8z8QjE0GmW1gYU5S9FOnJ0" crossorigin="anonymous"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script defer src="script.js"></script>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<h1 align="center">TODO LIST</h1>
<div class="row">
<div class="col-md-7">
<div class="form-group">
<label for="inpnewtask">NEW TASK</label>
<input type="text" class="form-control" id="inpnewtask" aria-describedby="newTaskHelp" placeholder="Enter name of task">
<small id="newTaskHelp" class="form-text text-muted">a short one line description</small>
</div>
</div>
<!--buttons-->
<div class="col-md-5 row">
<div class="col-6 col-sm-3 col-md-6 p-1">
<button class="btn btn-success col sizing" id="btnAdd" disabled>
<i class="fas fa-plus-square"></i> Add</button>
</div>
<div class="col-6 col-sm-3 col-md-6 p-1">
<button class="btn btn-danger col" id="btnReset" disabled>
<i class="fas fa-backspace"></i> Reset
</button>
</div>
<div class="col-6 col-sm-3 col-md-6 p-1">
<button class="col btn btn-info " id="btnSort" disabled>
<i class="fas fa-sort-amount-down"></i> Sort</button>
</div>
<div class="col-6 col-sm-3 col-md-6 p-1">
<button class="btn btn-warning col" id="btnCleanup">
<i class="fas fa-trash-alt"></i> Cleanup
</button>
</div>
</div>
<ul class="row list-group m-2 " id="ultasks">
</ul>
</div>
</div>
</body>
</html>