-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
40 lines (40 loc) · 920 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
31
32
33
34
35
36
37
38
39
40
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>Task Management</title>
</head>
<body>
<div id="header">
<header >To Do App</header>
</div>
<div id="head">
<div class="main">
<p>Todo Title: </p>
<input id="title" type="text">
</div>
</div>
<div id="add">
<button id="add-button">Add</button>
</div>
<div class="todo">
<!-- <div class="todo-list">
<div class="todo">
<h2>Todo 1</h2>
</div>
<div id="button">
<div class="button">
<h2>Todo 1</h2> -->
<!-- <button>Completed</button>
<button>Update</button>
<button>Delete</button>
</div>
</div>
</div> -->
</div>
<script src="main.js">
</script>
</body>
</html>