-
Notifications
You must be signed in to change notification settings - Fork 0
/
todo.html
33 lines (32 loc) · 1.09 KB
/
todo.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>To-do app</title>
<!--linking the stylesheet file-->
<link rel="stylesheet" href="todo.css">
</head>
<body>
<div class="container">
<div class="todo">
<h2>To-Do App <img src="todo.webp" alt=""></h2>
<div class="row">
<!--the textbox where the do items will be written-->
<input type="text" id="input-box" placeholder="Type text here">
<!--the add button that adds the todo tasks on click-->
<button onclick="addTask()">Add</button>
</div>
<!--the unordered list where the to do items will be appended-->
<ul id="list-container">
<!--<li class="checked">Task 1</li>
<li>Task 2</li>
<li>Task 3</li>
<li>Task 4</li>-->
</ul>
</div>
</div>
<!--linking the Javascript file-->
<script src="todo.js"></script>
</body>
</html>