-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.html
37 lines (36 loc) · 882 Bytes
/
main.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<!--author= Panji SN-->
<title>Welcome !</title>
<link href="main.css" rel="stylesheet" type="text/css" />
</head>
<body>
<h1 id="greetings">
</h1>
<form>
<div>
<label for="task_des">Pengingat</label>
<br>
<input id="task_des" type="text" />
</div>
<div>
<label for="task_state">Tanggal</label>
<br>
<input id="task_state" type="date" />
</div>
<div>
<button id="save_task" type="button">Save Task</button>
</div>
</form>
</div>
<hr />
<div id="container">
<h2>Kegiatan yang anda rencanakan :</h2>
<ul id="task_wrapper"></ul>
</div>
<script src="main.js"></script>
</body>
</html>