Files
64/index.html
2020-03-23 11:52:33 +01:00

26 lines
513 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>64</title>
<meta charset="utf8">
<style>
html, body {
margin: 0;
width: 100vw;
height: 100vh;
}
#ching {
max-width: 600px;
margin: auto;
font-size: 640px;
}
</style>
</head>
<body>
<p id="ching"></p>
<script>
setInterval(() => document.getElementById("ching").innerText = String.fromCharCode(19904+Math.floor(Math.random()*64)), 1000);
</script>
</body>
</html>