<html> <head> <title>Дата.</title> <script language="JavaScript"> <!-- time=new Date(); month=(time.getMonth() + 1); date=time.getDate(); year=time.getYear(); if (month < 10) {month = "0" + month } if (date < 10) {date = "0" + date } datastr=( date + " / " + month +" / " + year ) --> </script> </head> <body> <center><font face="Arial" size="3" color="#DC5912"><b> <script language="JavaScript"> <!-- document.write(datastr); --> </script> </body> </html>
|