26 lines
513 B
HTML
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>
|