blob: 08b3c8ea8b5d4c04859f9ef92902d94725d936a3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
<!doctype html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width" />
<title>LARS</title>
</head>
<body>
<h2>WARNING: This website may potentially trigger seizures for people with photosensitive epilepsy. Viewer discretion is advised.</h2>
Redirecting to <a href=""><span id="where"></span></a>, please wait
<span id="when">3</span>s...
<script charset="utf-8">
const choices = ["cool", "cooler"];
const choice = choices[Math.floor(Math.random() * choices.length)];
where.innerText = choice;
setTimeout(() => {
window.location.replace(`${choice}/`);
}, 3000);
setInterval(() => {
when.innerText = +when.innerText - 1;
}, 1000);
</script>
</body>
</html>
|