-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
28 lines (25 loc) · 950 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- 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>To-do Lists</title>
</head>
<body>
<div class="container mt-5 align-self-center">
<div class="card card-body">
<div class="container">
<button id='toggle-all-button' class="btn btn-danger mr-3">Toggle All</button>
<button id='add-button' class="btn btn-danger mr-3">Add</button>
<input id='add-input' class="p-1" placeholder="Enter Text">
</div>
<div class="container mt-4">
<ul id='todos-ul' class="list-group"></ul>
</div>
</div>
</div>
<script src="todoList.js"></script>
</body>
</html>