-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
35 lines (35 loc) · 892 Bytes
/
Copy pathindex.html
File metadata and controls
35 lines (35 loc) · 892 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=
, initial-scale=1.0"
/>
<link rel="icon" href="./assets/calendarIcon.svg" />
<link rel="stylesheet" href="./assets/Library Dycalendar/dycalendar.css" />
<link rel="stylesheet" href="./assets/css/styles.css" />
<title>Glassmorphic Calendar</title>
</head>
<body>
<section>
<div class="box">
<div class="container">
<div id="dycalendar"></div>
</div>
</div>
</section>
<script src="./assets/Library Dycalendar/dycalendar.js"></script>
<script>
dycalendar.draw({
target: "#dycalendar",
type: "month",
dayformat: "full",
monthformat: "full",
highlighttargetdate: true,
prevnextbutton: "show",
});
</script>
</body>
</html>