-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
40 lines (29 loc) · 1 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible"content="IE=edge">
<meta name="viewport"content="width=device-width, initial-scale=1.0">
<title>Document</title>
<!-- Bootstrap 5.0 CSS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta1/dist/css/bootstrap.min.css"rel="stylesheet"integrity="sha384-giJF6kkoqNQ00vy+HMDP7azOuL0xtbfIcaT9wjKHr8RbDVddVHyTfAAsrekwKmP1"crossorigin="anonymous">
<link rel="stylesheet"href="style.css">
</head>
<body>
<div class="container">
<header class="text-center text-light my-4">
<h1 class="mb-4">Todo List</h1>
<form class="search">
<input class="form-control m-auto"type="text"name="search" placeholder="search items"/>
</form>
</header>
<ul class="list-group todos mx-auto text-light">
</ul>
<form class="add text-center my-4">
<label >Add a new todo...</label>
<input class="form-control m-auto" placeholder="Add item" type="text"name="add"/>
</form>
</div>
<script src="script.js"> </script>
</body>
</html>