-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
76 lines (59 loc) · 2.45 KB
/
Copy pathindex.html
File metadata and controls
76 lines (59 loc) · 2.45 KB
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
66
67
68
69
70
71
72
73
74
75
76
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.12.1/css/all.min.css"
integrity="sha256-mmgLkCYLUQbXn0B1SRqzHar6dCnv9oZFPEC1g1cwlkk=" crossorigin="anonymous" />
<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">
<link rel="stylesheet" href="style.css">
<title>To do List</title>
</head>
<body>
<!--Layout-->
<div class="container">
<header class="text-center text-light my-4">
<h1 class="mb-4"> Todo List</h1>
<form 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">
<span>Make A cake</span>
<i class="fas fa-trash delete"></i>
</li>
<li class="list-group-item d-flex justify-content-between align-items-center">
<span>Make A soup</span>
<i class="fas fa-trash delete"></i>
</li>
<li class="list-group-item d-flex justify-content-between align-items-center">
<span>Make A pizza</span>
<i class="fas fa-trash delete"></i>
</li>
</ul>
<form action="" class="add text-center my-4">
<label class="text-light">What will you do ?</label>
<input type="text" class="form-control todo m-auto" type="text" name="add" />
<button class="btn my-4" onclick="todolist">
<i class="fas fa-plus icon-default"></i>
Add To Do
</button>
</form>
</div>
<div class="popup-wrapper">
<div class="popup">
<!-- this section will be added automatically-->
<!--<div class="popup-close">X</div>
<div class="popup-content">
<h2>Fill the Input</h2>
<p>Don't forget</p>
<a href="#">Return</a>
</div>-->
</div>
</div>
</div>
<script src="todo.js"></script>
</body>
</html>