-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
30 lines (29 loc) · 955 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="style.css">
<title>Simple To-Do App</title>
</head>
<body>
<div class="container">
<div class="task-form">
<h2>Add a Task</h2>
<input type="text" id="taskTitle" placeholder="Title">
<textarea id="taskDescription" placeholder="Description"></textarea>
<button onclick="addTask()">Add</button>
</div>
<div class="taskcontainer">
<div class="task-list">
<h2>Task List</h2>
<div id="tasks"></div>
</div>
</div>
</div>
<footer>
Developed by Abhijit Motekar || <a href="mailto:[email protected]">@[email protected]</a>
</footer>
<script src="script.js"></script>
</body>
</html>