29 lines
No EOL
828 B
HTML
29 lines
No EOL
828 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Welcome</title>
|
|
|
|
<link rel="stylesheet" href="standard.css">
|
|
|
|
<style>
|
|
* {
|
|
text-align: center;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<script>
|
|
function createWindow(url, name, w, h) {
|
|
window.parent.postMessage(`win ${url} ${name} ${w} ${h}`)
|
|
}
|
|
</script>
|
|
<h1>Woah there!</h1>
|
|
|
|
<p>If you're seeing this that means you're playing this on the wrong website!</p>
|
|
<p>Don't worry though, simply click that button and I'll take you to where you can play this game.</p>
|
|
|
|
<button onclick="window.top.location.href = 'https://i-eat.rocks'"><span class="rainbow">Take me there!</span></button>
|
|
</body>
|
|
</html> |