-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
31 lines (29 loc) · 1.05 KB
/
index.html
File metadata and controls
31 lines (29 loc) · 1.05 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
<!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="style.css">
<!-- Bootstrap CSS CDN -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
<title>To Do List - JavaScript Project</title>
</head>
<body>
<div class="container">
<div class="input-container">
<h1>My To Do List</h1>
<input type="text" placeholder="Add a new to do..." id="inputBox">
<input type="button" value="Add" id="addBtn">
</div>
<ul class="todoList" id="todoList">
<!-- <li><p>Task1</p></li>
<li>Task2</li>
<li>Task3</li> -->
</ul>
</div>
<!-- Bootstrap JS & Popper.js for Tooltips -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
<script src="script.js"></script>
</body>
</html>