1
0
This commit is contained in:
dtb 2022-01-30 23:03:23 -05:00
parent 998010968d
commit 674a9d90c4

View File

@ -9,7 +9,7 @@
<META CONTENT="interest-cohort=()" HTTP-EQUIV="Permissions-Policy" /> <!-- FUCK GOOGLE -->
<META NAME="viewport" CONTENT="width=device-width, initial-scale=1" />
<STYLE>
p { text-align: center; }
p, pre { text-align: center; }
</STYLE>
<TITLE>Home</TITLE>
</HEAD>
@ -20,7 +20,7 @@ p { text-align: center; }
<SCRIPT TYPE="application/javascript">
window.onload = window.initializesheets;
function time(){
document.getElementById("time").innerHTML = (Date.now() / 1000).toString() + "<BR />" + Date().toString();
document.getElementById("time").innerHTML = Math.round(Date.now() / 1000).toString() + "<BR />" + Date().toString();
}
var interval = window.setInterval(time, 1000); /* every second */
</SCRIPT>