-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (40 loc) · 1.84 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
<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">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@48,400,0,0" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="todo.css">
<title>Document</title>
</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 todos">
</form>
</header>
<ul class="list-group todos mx-auto text-light ">
<li class="list-group-item d-flex justify-content-between alighn-item-center">
<span>play mariokart</span>
<span class="material-symbols-outlined delete">delete</span>
</li>
<li class="list-group-item d-flex justify-content-between alighn-item-center">
<span>make a veggie pie</span>
<span class="material-symbols-outlined delete">delete</span>
</li>
<li class="list-group-item d-flex justify-content-between alighn-item-center">
<span>defet ganon in zelda</span>
<span class="material-symbols-outlined delete">delete</span>
</li>
</ul>
<form class="add text-center my-4">
<label class="text-light my-2">Add new todo...</label>
<input type="text" name="add" class="form-control m-auto">
</form>
</div>
<script src="/todo.js"></script>
</body>
</html>