<!doctype html> <html> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width" /> <title>LARS</title> </head> <body> 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>