where do i insert this script in a html?
<SCRIPT LANGUAGE="JavaScript">
var monthNames = new Array(
"Jan.","Feb.","March","April","May","June","July","August","Sept.","Oct.","N
ov
.","Dec.");
var now = new Date();
document.write(monthNames[now.getMonth()] + " " + now.getDate() + ", "
+
2000);
</SCRIPT>
I need to insert it into a table in the html page.
<SCRIPT LANGUAGE="JavaScript">
var monthNames = new Array(
"Jan.","Feb.","March","April","May","June","July","August","Sept.","Oct.","N
ov
.","Dec.");
var now = new Date();
document.write(monthNames[now.getMonth()] + " " + now.getDate() + ", "
+
2000);
</SCRIPT>
I need to insert it into a table in the html page.