This is a JavaScript library to create Calendar. You can use it in your blog and website.
It's free and released under MIT License Copyright (c) 2016 Yusuf Shakeel
Include the JavaScript and Stylesheet file in your page.
Create a div and give it an id like #sample-calendar and the .dycalendar-container class.
Call the draw() method of dyCalendarJS to draw the calendar.
<!DOCTYPE html>
<html>
<head>
<title>dyCalendarJS</title>
<link href="path/to/dycalendar.min.css" rel="stylesheet">
</head>
<body>
<div id="sample-calendar" class="dycalendar-container">
</div>
<!-- javascript -->
<script src="path/to/dycalendar.min.js"></script>
<script>
dycalendar.draw({
target: '#sample-calendar'
});
</script>
</body>
</html>
Copyright © Yusuf Shakeel
MIT License