-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
67 lines (61 loc) · 2.03 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
62
63
64
65
66
67
<!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 With Local Storage</title>
<link rel="stylesheet" href="css/style.css" />
</head>
<body>
<!-- judul -->
<header>
<h1>TODO APP</h1>
</header>
<!-- judul -->
<!-- input todo -->
<div class="container-todo">
<div class="header-formInput">
<h2>Input Your Todo</h2>
</div>
<form action="#" id="formTodo">
<div class="todo-input">
<label for="todo">Todo</label>
<input type="text" name="todo" id="todo" placeholder="what are you doing today?" autocomplete="off" required />
</div>
<div class="date-input">
<label for="dateTodo">Deadline</label>
<input type="date" name="dateTodo" id="dateTodo" required />
</div>
<input type="submit" value="submit" id="submit" />
</form>
</div>
<!-- akhir input todo -->
<!-- section unfinish todo -->
<div class="container-unfinishTodo">
<div class="header-unfinishTodo">
<h2>Unfinish Todo</h2>
</div>
<div class="uncompleted-todos"></div>
</div>
<!-- akhir section unfinish todo -->
<!-- section finish todo -->
<div class="container-finishTodo">
<div class="header-finishTodo">
<h2>Finished Todo</h2>
</div>
<div class="completed-todos"></div>
</div>
<!-- akhir section finish todo -->
<!-- footer -->
<footer>
<p><i class="fas fa-copyright"></i> Copyright 2022 Created With <i class="fas fa-heart" style="color: #ff4444"></i> By Suyud Setiawan</p>
</footer>
<!-- akhir footer -->
<!-- link untuk icon dari fontAwesome -->
<script src="https://kit.fontawesome.com/df3b53d485.js" crossorigin="anonymous"></script>
<!-- link script -->
<script src="js/localStorage.js"></script>
<script src="js/script.js"></script>
</body>
</html>