-
Notifications
You must be signed in to change notification settings - Fork 0
/
to-do-list.html
65 lines (64 loc) · 1.94 KB
/
to-do-list.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
<!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="shortcut icon"
href="https://result.school/logo-result.school.png"
/>
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-KK94CHFLLe+nY2dmCWGMq91rCGa5gtU4mk92HdvYe+M/SXH301p5ILy+dN9+nJOZ"
crossorigin="anonymous"
/>
<!-- fonts library -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Agbalumo&family=Roboto&family=Lobster&display=swap"
rel="stylesheet"
/>
<style>
.btn-success-emphasis {
background-color: #28a745; /* success color */
color: white;
}
</style>
<title>arrays&objects</title>
<script src="to-do-list.js" defer></script>
</head>
<body
class="bg-dark text-light"
style="
font-family: 'Agbalumo', 'Lobster', evolver-variable, serif;
font-size: 24px;
"
>
<div class="container w-50 pt-5">
<!-- h1 -->
<h1 style="font-size: 48px" class="text-center">Notes</h1>
<!-- input -->
<input
type="text"
class="form-control mb-2 rounded-4 text-body-secondary border-0 shadow-none"
id="input-html"
style="font-size: 24px; text-align: center"
/>
<!-- button Add -->
<button
class="btn btn-outline-secondary w-100 mb-2 btn-light rounded-4"
id="add-btn-html"
style="font-size: 24px"
class="text-center"
>
Add
</button>
<!-- list -->
<ul class="list-group list-group-flush rounded-4" id="ul-html"></ul>
</div>
</body>
</html>