Skip to content

Commit ca980e2

Browse files
Create index.html for to-do list application
1 parent 5b4e5ba commit ca980e2

1 file changed

Lines changed: 16 additions & 0 deletions

File tree

index.html

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)