Skip to content

Commit d3affca

Browse files
index.html
1 parent 8616cdf commit d3affca

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

Diff for: index.html

+28
Original file line numberDiff line numberDiff line change
@@ -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+
</div>
24+
25+
</div>
26+
<script src="script.js"></script>
27+
</body>
28+
</html>

0 commit comments

Comments
 (0)