Skip to content

Commit d96c2f6

Browse files
Update index.html
1 parent 6af6564 commit d96c2f6

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

ToDoList/sujitmahapatra/index.html

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,26 @@
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 href="https://fonts.googleapis.com/css?family=Montserrat" rel="stylesheet">
17

8+
<link rel="stylesheet" href="styles.css">
9+
<title>SM-Task Manager</title>
10+
</head>
11+
<body>
12+
<div class="container">
13+
<h1 class="title">SM - Task Manager</h1>
14+
<div class="task-form">
15+
<input type="text" id="task-input" placeholder="Enter a new task..." class="task-input">
16+
<button id="add-task-btn" class="add-task-btn">Add Task</button>
17+
</div>
18+
<ul id="task-list" class="task-list"></ul>
19+
<center><button id="clear-all-btn" class="clear-all-btn">Clear All</button>
20+
<p><b>Made with ❤️ by Mr. Sujit</b></p>
21+
</center>
22+
23+
</div>
24+
<script src="script.js"></script>
25+
</body>
26+
</html>

0 commit comments

Comments
 (0)