crunch
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
 
 
 

70 rindas
2.0 KiB

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <title>Feast</title>
  6. <link rel="stylesheet" href="feast.css">
  7. <script src="world.js"></script>
  8. <script src="feast.js"></script>
  9. <meta name="theme-color" content="#000000" />
  10. <meta name="description" content="A vore text adventure" />
  11. <meta property="og:title" content="Feast" />
  12. <meta property="og:description" content="A vore text adventure" />
  13. <meta property="og:image" content="https://chemicalcrux.org/feast/feast.png" />
  14. <link rel="shortcut icon" href="https://chemicalcrux.org/favicon.ico" type="image/x-icon" />
  15. </head>
  16. <body>
  17. <div id="game-and-stats">
  18. <div id="log">
  19. Welcome to Feast v0.0.3
  20. </div>
  21. <div id="stats">
  22. qweqw
  23. </div>
  24. </div>
  25. <div id="footer">
  26. <div id="compass">
  27. <table>
  28. <tr>
  29. <th>
  30. <button class="compass-button" id="compass-north-west">North West</button>
  31. </th>
  32. <th>
  33. <button class="compass-button" id="compass-north">North</button>
  34. </th>
  35. <th>
  36. <button class="compass-button" id="compass-north-east">North East</button>
  37. </th>
  38. </tr>
  39. <tr>
  40. <th>
  41. <button class="compass-button" id="compass-west">West</button>
  42. </th>
  43. <th>
  44. <button class="compass-button inactive-compass-button" id="compass-filler" disabled="true"></button>
  45. </th>
  46. <th>
  47. <button class="compass-button" id="compass-east">East</button>
  48. </th>
  49. </tr>
  50. <tr>
  51. <th>
  52. <button class="compass-button" id="compass-south-west">South West</button>
  53. </th>
  54. <th>
  55. <button class="compass-button" id="compass-south">South</button>
  56. </th>
  57. <th>
  58. <button class="compass-button" id="compass-south-east">South East</button>
  59. </th>
  60. </tr>
  61. </table>
  62. </div>
  63. </div>
  64. </body>
  65. </html>