We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5b4e5ba commit ca980e2Copy full SHA for ca980e2
1 file changed
index.html
@@ -0,0 +1,16 @@
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
+ <link rel="stylesheet" href="styles.css">
7
+ <title>To-Do List</title>
8
+</head>
9
+<body>
10
+ <h1>To-Do List Application</h1>
11
+ <input type="text" id="new-task" placeholder="Add a new task...">
12
+ <button id="add-task">Add Task</button>
13
+ <ul id="task-list"></ul>
14
+ <script src="script.js"></script>
15
+</body>
16
+</html>
0 commit comments