<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
body {
background: black;
margin: 0;
padding: 0;
}
p {
font-size: 1rem;
margin: 0;
font-family: 'Lucida Console', Consolas, monospace;
color: rgb(9, 255, 0);
word-break: break-all;
white-space: pre-wrap;
}
</style>
</head>
<body>
<p></p>
<script>
let characterCount = 0
const word = `We have no Twitter.
We have no Discord.
We are not for sale.
We only communicate through children of 'The Monument'.
DO NOT CLICK LINKS.
DO NOT TRUST IMPERSONATORS.
PROTECT YOUR SATS.
`
setInterval(addCharacter, 40)
function addCharacter() {
const i = word[characterCount % word.length]
document.querySelector('p').innerText += i
characterCount++
}
</script>
</body>
</html>
1 year ago
1 year ago
1 year ago
1 year ago
41 days ago
201 days ago
208 days ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago