apach.dev/public/the-game.html
2025-03-26 14:10:17 -05:00

31 lines
No EOL
999 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="assets/style.css">
<style>
span.game {
color: var(--blue);
}
p, li {
font-size: larger;
}
</style>
<title>Apache</title>
</head>
<body>
<h1>What is <span class="game">The Game</span>?</h1>
<p><span class="game">The Game</span> is pretty simple, it's a mind game with a few rules</p>
<ul>
<li>The goal is to not think about <span class="game">The Game</span></li>
<li>If you remember <span class="game">The Game</span>, you lose</li>
<li>When you lose, you have to announce <em>"I lost <span class="game">The Game</span>"</em> out loud (or whatever other way is convenient)</li>
<li>You can't lose again for 30 minutes after remembering <span class="game">The Game</span></li>
</ul>
<p>PS. You're now playing, welcome to <span class="game">The Game</span>.</p>
</body>
</html>