Code
<html>
<head>
<link rel="stylesheet" href="style.css" type="text/css">
<title>До события осталось...</title>
</head>
<body>
<p align="center"><script language="JavaScript"><!--
function cntdown1(){
today = new Date()
nextEVENT = new Date("January 1, 3000")
msPerDay = 24 * 60 * 60 * 1000 ;daysLeft = (nextEVENT.getTime() - today.getTime()) / msPerDay;daysLeft = Math.round(daysLeft);document.write("<CENTER>До 3000 года осталось <FONT COLOR=\"#000777\">" + daysLeft + " дней(я)</FONT></CENTER>") ;
minutesLeft=(nextEVENT.getTime() - today.getTime()) / 60000;
minutesLeft = Math.round(minutesLeft);
document.write("<CENTER>Или точнее <FONT COLOR=\"#000777\">" + minutesLeft + " минут(ы)</FONT> :-)</CENTER>") ;
}
//--></script> <script>cntdown1()</script></p>
</body>
</html>