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">
function setToday() {
var months = new Array("Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec");
var date = new Date(), day=date.getDate();
var today = months[date.getMonth()]+" "+day;
today += ((day==1)||(day==21)||(day==31))?("st"):(((day==2)||(day==22))?("nd"):(((day==3)||(day==23))?("rd"):("th")));
today += ", "+date.getFullYear();
spnDate.innerHTML = today;
}
</script>
...
<body onload="setToday();">
...
<span id="spnDate"></span>
Jun 12th, 2001