Du kannst nicht mehr als 25 Themen auswählen
Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
|
- <!DOCTYPE html>
- <html lang="en">
-
- <head>
- <meta charset="utf-8">
- <title>Feast</title>
- <link rel="stylesheet" href="feast.css">
- <script src="world.js"></script>
- <script src="feast.js"></script>
- <meta name="theme-color" content="#000000" />
- <meta name="description" content="A vore text adventure" />
- <meta property="og:title" content="Feast" />
- <meta property="og:description" content="A vore text adventure" />
- <meta property="og:image" content="https://chemicalcrux.org/feast/feast.png" />
- <link rel="shortcut icon" href="https://chemicalcrux.org/favicon.ico" type="image/x-icon" />
- </head>
-
- <body>
-
- <div id="game-and-stats">
- <div id="log">
- Welcome to Feast v0.0.3
- </div>
- <div id="stats">
- qweqw
- </div>
- </div>
- <div id="footer">
- <div id="compass">
- <table>
- <tr>
- <th>
- <button class="compass-button" id="compass-north-west">North West</button>
- </th>
- <th>
- <button class="compass-button" id="compass-north">North</button>
- </th>
- <th>
- <button class="compass-button" id="compass-north-east">North East</button>
- </th>
- </tr>
- <tr>
- <th>
- <button class="compass-button" id="compass-west">West</button>
- </th>
- <th>
- <button class="compass-button inactive-compass-button" id="compass-filler" disabled="true"></button>
- </th>
- <th>
- <button class="compass-button" id="compass-east">East</button>
- </th>
- </tr>
- <tr>
- <th>
- <button class="compass-button" id="compass-south-west">South West</button>
- </th>
- <th>
- <button class="compass-button" id="compass-south">South</button>
- </th>
- <th>
- <button class="compass-button" id="compass-south-east">South East</button>
- </th>
- </tr>
- </table>
- </div>
- </div>
- </body>
-
- </html>
|