-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
61 lines (53 loc) · 1.33 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Todo app</title>
<link rel="stylesheet" href="./style.css">
</head>
<body>
<div class="container">
<h1>Todo App</h1>
<div class="input-box">
<input type="text" placeholder="add task ..." id="task-input">
<input type="date" id="date-input">
<button id="add-button">Add</button>
</div>
<div class="functions">
<div>
<button class="function-button">All</button>
<button class="function-button">Pending</button>
<button class="function-button">Completed</button>
</div>
<button id="delete-all-button">Delete all</button>
</div>
</div>
<div id="alert-message"></div>
<div class="bottom-box">
<table width="100%">
<thead>
<tr>
<th>Task</th>
<th>Date</th>
<th>Status</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
<!-- <tr>
<td>text</td>
<td>date</td>
<td>pending</td>
<td>
<button>Edit</button>
<button>Done</button>
<button>Delete</button>
</td>
</tr> -->
</tbody>
</table>
</div>
<script src="./script.js"></script>
</body>
</html>