mirror of
https://github.com/jimeh/bah.io.git
synced 2026-02-19 06:36:41 +00:00
40 lines
797 B
HTML
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>
|