-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
59 lines (54 loc) · 1.59 KB
/
Copy pathindex.html
File metadata and controls
59 lines (54 loc) · 1.59 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=1"
/>
<title>Todo Apps</title>
<link rel="stylesheet" href="main.css" />
</head>
<body>
<!-- Container -->
<div class="container">
<header class="header">
<div class="waktu" id="waktu"></div>
<div class="profile" id="profile">Profile</div>
</header>
<!-- Awal form inputan -->
<form class="input-area" id="input-area">
<h4>Task</h4>
<label for="judul-todo">Input task :</label>
<input type="text" name="judul-todo" id="judul-todo" required />
<label for="prioritas">Choose priority :</label>
<select id="prioritas" name="prioritas">
<option value="low">Low</option>
<option value="medium">Medium</option>
<option value="high">High</option>
</select>
<button type="submit" id="submit">Submit</button>
</form>
<!-- Akhir form inputan -->
<!-- Awal List -->
<section>
<h4>On Going Task</h4>
<div id="list-todo"></div>
</section>
<!-- Akhir List -->
<!-- Awal List Done -->
<section>
<h4 class="done-item">
Task Done<span
><button type="submit" id="deleteDoneBtn" class="btn-delete-done">
Delete All
</button></span
>
</h4>
<div id="list-done"></div>
</section>
<!-- Akhir List -->
</div>
<script src="mais.js"></script>
</body>
</html>