calendar/test.htm

15 lines
471 B
HTML
Raw Normal View History

2018-03-14 03:23:29 +03:00
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="stylesheet" href="calendar-material.css">
2018-03-17 20:58:02 +03:00
<script src="calendar.min.js"></script>
2018-03-14 03:23:29 +03:00
<input id="x" style="margin: 50px">
<script>
Calendar.set(document.getElementById('x'));
</script>
<input id="y" style="margin: 50px">
<script>
Calendar.set(document.getElementById('y'), { selectboxes: true });
</script>