Adding Today's Date

You can add today's date to your page using little html:

In this example, I'm using <H1> to format it as a header (& center it), but you can use any style you prefer. Simply copy & paste the code below:

<h1> <script language = "JavaScript"> var now = new Date(); var dayNames = new Array ("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"); var monNames = new Array ("January","February","March","April","May","June","July","August","September","October","November","December"); document.write("Today is " + dayNames[now.getDay()] + " " + monNames [now.getMonth()] + " " + now.getDate() + ", " + now.getFullYear()); </script> </h1>

Heading 2 version:

Heading 3 version: