-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
59 lines (47 loc) · 1.7 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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>lunar_calendar</title>
<script ></script>
</head>
<body>
<h1 align="center">Buddhist Lunar Calendar</h1>
<div id="maincontent" class="maincontent">
<div class="inputbox">
<button id="prev">Prev</button>
<input id="input" placeholder="-622" type="number" value="-622" />
<button id="next">Next</button>
<!-- <button id="text2datebtn">convert text to datelist</button> -->
<!-- <button id="convert2data">convert to data</button>-->
<br>
<button id="showcal">ShowCalendar</button>
<button id="clear">clear</button>
</div>
<div>
<h3 class="yearheading"></h3>
</div>
<div class="datadiv">
<div class="eventdiv">
<div class="buttonsfloatingdiv">
<button class="addeventbtn" title="Add Event">+</button>
</div>
<div id="eventlistdiv"></div>
</div>
<div id="output">
<ul id="outputul"></ul>
<ol id="outputol"></ol>
<div id="outputdiv"></div>
</div>
</div>
</div>
<!-- Load js-->
<script src="./js/moondata.js" charset="utf-8"></script>
<script src="./js/awesome-notifications.js" charset="utf-8"></script>
<!-- Load module -->
<script type="module" src="./modules/index.js" charset="utf-8"></script>
<!-- Load css -->
<link rel="stylesheet" href="./css/index.css" />
<link rel="stylesheet" href="./css/awesome-style.css" />
</body>
</html>