-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
66 lines (64 loc) · 2.07 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.1/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-iYQeCzEYFbKjA/T2uDLTpkwGzCiq6soy8tYaI1GyVh/UjpbCx/TYkiZhlZB6+fzT"
crossorigin="anonymous"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.0/css/all.min.css"
integrity="sha512-xh6O/CkQoPOWDdYTDqeRdPCVd1SpvCA9XXcUnZS2FmJNp1coAFzvtCN9BmamE+4aHK8yyUHUSCcJHgXloTyT2A=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<link rel="stylesheet" href="style.css" />
<link
rel="shortcut icon"
href="./img/clipboard-list-solid.svg"
type="image/x-icon"
/>
<title>TO-DO</title>
</head>
<body>
<div class="container-fluid mt-3">
<div class="row">
<div class="col-12 banner"></div>
<div>
<h1 class="text-center display-3 fw-bold">
<i class="fa-solid fa-clipboard-list text-dark"></i> TO-DO LIST
</h1>
</div>
</div>
<div class="container">
<div
class="input-area mt-2 col-12 d-flex justify-content-center gap-2 col-12"
>
<input
class="inputbox text-white ps-4 mb-2"
type="text"
value=""
placeholder="input here"
/>
<button class="add-btn btn btn-success mb-2">
<i class="fa-solid fa-plus"></i>
</button>
<button class="del-btn btn btn-danger mb-2">
<i class="fa-sharp fa-solid fa-arrow-rotate-left"></i>
</button>
</div>
<div class="listarea"></div>
</div>
</div>
<script src="./app.js"></script>
<script
src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.1/dist/js/bootstrap.bundle.min.js"
integrity="sha384-u1OknCvxWvY5kfmNBILK2hRnQC3Pr17a+RTT6rIHI7NnikvbZlHgTPOOmMi466C8"
crossorigin="anonymous"
></script>
</body>
</html>