-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathto-do-list.html
More file actions
37 lines (36 loc) · 1.43 KB
/
to-do-list.html
File metadata and controls
37 lines (36 loc) · 1.43 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>To Do List</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-9ndCyUaIbzAi2FUVXJi0CjmCapSmO7SnpJef0486qhLnuZ2cdeRhO02iuK6FUUVM" crossorigin="anonymous">
<!-- Add any additional head content here if needed -->
</head>
<body>
<div class="container">
<header class="text-center my-4">
<h1>To-Do List</h1>
</header>
<main class="row">
<section class="border border-lg-none p-4 col-lg-4">
<form id="to-do-form">
<h3><label class="form-label" for="to-do">Enter to-do:</label></h3>
<input class="form-control" type="text" name="to-do" id="to-do">
<div class="d-grid"><button class="btn btn-secondary mt-3 add">Add To-Do</button></div>
</form>
</section>
<section class="my-4 my-lg-0 col-lg-8">
<h3>To-Dos:</h3>
<ul class="list-group" id="to-do-list">
</ul>
</section>
</main>
</div>
<script src="./js/to-do-list.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"
integrity="sha384-geWF76RCwLtnZ8qwWowPQNguL3RmwHVBC9FhGdlKrxdiJJigb/j/68SIy3Te4Bkz"
crossorigin="anonymous"></script>
<!-- Add any additional script tags or content here if needed -->
</body>
</html>