-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
28 lines (26 loc) · 875 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
25
26
27
28
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<title>Âm Lịch Việt Nam</title>
<link href="https://fonts.googleapis.com/css?family=Roboto:400,700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="../dist/jquery.amlich.css">
</head>
<body>
<div id="amlich-calendar" class="main"></div>
<script src="../examples/js/jquery-2.1.0.min.js"></script>
<script src="../dist/jquery.amlich.min.js"></script>
<script type="text/javascript">
$(function() {
$('#amlich-calendar').amLich({
type: 'calendar',
tableWidth: '100%'
});
});
</script>
<div style="text-align: center; margin-top: 12px; font-size: 10px; font-family: Roboto, sans-serif;">
© koolArt.net
</div>
</body>
</html>