-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
24 lines (23 loc) · 899 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Self-Calender</title>
<link rel='stylesheet' type='text/css' href='style.css'>
</head>
<body id='body'>
<div class='Navi'>
<h3 class="Title" id="Title">Title</h3>
<hr></hr>
<button id='left' class='NaviBtn' onclick="LeftClick()" onpointerdown="ripplet(arguments[0], {opacity:'0.25'})">⟨</button>
<select id='select' class='Select' onchange="SelectChange()"></select>
<button id='right' class='NaviBtn' onclick="RightClick()" onpointerdown="ripplet(arguments[0], {opacity:'0.25'})">⟩</button>
</div>
<div id='Calender'>
</div>
</body>
<script src='./Function/ripplet.js'></script>
<script src="./Function/Navigator.js"></script>
<script src='./Custom/list.js'></script>
<script src='./Function/import.js'></script>
</html>