What is wrong with this javascript I want it to display the date in a nice box. But I get nothing to display.
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>Display Date</title>
</head>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>Display Date</title>
</head>
<style type="text/css">
body {background-color: tan: ;}
table {background-color: peach;
border-style: outset;
border-color: green;}
td {font-family: Comic Sans MS;
font size: 16pt;
font-weight: bold;
color: brown;}
</style></head>
<script language="javascript" type="text/javascript">
Today = new Date ( );
document.write("Today's Date is: " + Today.getmonth() + "/" + Today.getdate() + "/" + Today.getyear());
</script>
</table>
</body>
</html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>Display Date</title>
</head>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>Display Date</title>
</head>
<style type="text/css">
body {background-color: tan: ;}
table {background-color: peach;
border-style: outset;
border-color: green;}
td {font-family: Comic Sans MS;
font size: 16pt;
font-weight: bold;
color: brown;}
</style></head>
<script language="javascript" type="text/javascript">
Today = new Date ( );
document.write("Today's Date is: " + Today.getmonth() + "/" + Today.getdate() + "/" + Today.getyear());
</script>
</table>
</body>
</html>