We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8616cdf commit d3affcaCopy full SHA for d3affca
index.html
@@ -0,0 +1,28 @@
1
+<!DOCTYPE html>
2
+<html lang="en">
3
+<head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>To-do List </title>
7
+ <link rel="stylesheet" href="style.css">
8
+</head>
9
+<body>
10
+ <div class="container">
11
+ <div class="todo-app">
12
+ <h2>To-Do List <img src="images/icon.png" alt="icon"></h2>
13
+
14
+ <div class="row">
15
+ <input type="text" id="input-box" placeholder="Enter the Task">
16
+ <button onclick="addTask()">Add</button>
17
+ </div>
18
+ <ul id="list-container">
19
20
21
22
+ </ul>
23
24
25
+</div>
26
+ <script src="script.js"></script>
27
+</body>
28
+</html>
0 commit comments