-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
47 lines (44 loc) · 2.02 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
<!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">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
integrity="sha384-zCbKRCUGaJDkqS1kPbPd7TveP5iyJE0EjAuZQTgFLD2ylzuqKfdKlfG/eSrtxUkn" crossorigin="anonymous">
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.13.0/css/all.min.css" rel="stylesheet">
<link rel="stylesheet" href="./all.css">
<link rel="stylesheet" href="./bootstrap.min.css">
<link rel="stylesheet" href="./todo.css">
<title>Todo App</title>
</head>
<body>
<div class="container contain">
<header class="text-center text-white my-4">
<h1 class="mb-4">Todo List</h1>
<form action="" class="search">
<input type="text" class="form-control m-auto" 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 align-items-center mb-3">
<span>play mariokart</span>
<i class="far fa-trash-alt delete text-danger"></i>
</li>
<li class="list-group-item d-flex justify-content-between align-items-center mb-3">
<span>defeat ganon in zelda</span>
<i class="far fa-trash-alt delete text-danger"></i>
</li>
<li class="list-group-item d-flex justify-content-between align-items-center mb-3">
<span>make veggie pie</span>
<i class="far fa-trash-alt delete text-danger"></i>
</li>
</ul>
<form class="add text-center my-4">
<label for="" class="text-white">Add a new todo...</label>
<input type="text" class="form-control m-auto" name="add">
</form>
</div>
<script src="./todo.js"></script>
</body>
</html>