Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<script type="text/javascript">
var now = new Date();
var leap = (parseInt(now.getFullYear(), 10) % 4 == 0);
var arMonths = ["January", "February", "March", "April", "May",
"June", "July", "August", "September", "October", "November", "December"];
var arDays = [31, (leap?29:29), 31, 30, 31, 30, 31, 31, 30, 31, 30, 31];
var result = arMonths[now.getMonth()] + " " + arDays[ now.getMonth() ];
alert(result);
</script>