-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
53 lines (45 loc) · 1.65 KB
/
index.html
File metadata and controls
53 lines (45 loc) · 1.65 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Todo Apps</title>
<link rel="stylesheet" href="css/style.css">
<script src="js/script.js" type="text/javascript"></script>
</head>
<body>
<header>
<h1>
Todo List
</h1>
</header>
<div class="wrapper">
<div class="container bg-white shadow">
<h2 class="container-header text-center">Tambah yang harus dilakukan</h2>
<form class="form" action="#" id="form">
<div class="form-group form-title">
<label for="title">Masukkan hal yang akan dilakukan</label>
<input type="text" id="title" name="title" required>
</div>
<div class="form-group form-title">
<label for="date">Masukkan tanggal harus selesai</label>
<input type="date" id="date" name="date" required>
</div>
<input type="submit" value="Submit" name="Submit" class="btn-submit">
</form>
</div>
<!--membuat div untuk menampilkan lis todo yg dibuat-->
<div class="container">
<h2 class="container-header">Yang Harus dilakukan</h2>
<div class="list-item" id="todos">
</div>
</div>
<div class="container">
<h2 class="container-header">Yang Sudah dilakukan</h2>
<div class="list-item" id="completed-todos">
</div>
</div>
</div>
</body>
</html>