Files
bah.io/game.html
2021-06-09 11:18:41 +01:00

40 lines
797 B
HTML

<!--
The Game
Rules:
1. You are playing The Game.
2. Whenever you think about The Game, you lose.
3. Loss must be announced.
-->
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title>the game</title>
<style>
body {
background: #111;
color: #fff;
}
#the-game {
position: absolute;
top: 50%;
left: 50%;
height: 584px;
width: 530px;
margin-top: -292px;
margin-left: -265px;
text-align: center;
}
</style>
</head>
<body>
<p id="the-game">
<a href="https://www.reallifecomics.com/comic.php?comic=title-1920">
<img src="the-game.png" alt="the game" />
</a>
</p>
</body>
</html>