a munch adventure
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 

66 строки
2.4 KiB

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <title>Satiate</title>
  6. <link rel="stylesheet" href="satiate.css">
  7. <script src="audio.js"></script>
  8. <script src="satiate.js"></script>
  9. <meta name="theme-color" content="#000000" />
  10. <meta name="description" content="A text adventure!" />
  11. <meta property="og:title" content="Satiate" />
  12. <meta property="og:description" content="A text adventure!" />
  13. <meta property="og:image" content="https://chemicalcrux.org/satiate.png" />
  14. <link rel="shortcut icon" href="https://chemicalcrux.org/favicon.ico" type="image/x-icon" />
  15. </head>
  16. <body>
  17. <div id="info-area">
  18. <div class="sidebar">
  19. <div id="menu">
  20. this is the menu, eventually
  21. </div>
  22. <div id="self-info">
  23. this is your own info
  24. </div>
  25. </div>
  26. <div id="log">
  27. this is the log
  28. </div>
  29. <div class="sidebar" id="area-info">
  30. this is the area info
  31. </div>
  32. </div>
  33. <div id="control-area">
  34. <div id="actions">
  35. <button class="action-button">potato 1</button>
  36. <button class="action-button">potato 2</button>
  37. <button class="action-button">potato 3</button>
  38. <button class="action-button">potato 4</button>
  39. <button class="action-button">potato 5</button>
  40. <button class="action-button">potato 6</button>
  41. <button class="action-button">potato 7</button>
  42. <button class="action-button">potato 8</button>
  43. <button class="action-button">potato 9</button>
  44. <button class="action-button">potato 10</button>
  45. </div>
  46. <div id="desc">
  47. this is a description of your action
  48. </div>
  49. <div id="moves">
  50. beep beep
  51. <div id="move-holder">
  52. <button class="move-button" id="move-up-left"><span>Potato Factory</span></button>
  53. <button class="move-button" id="move-up"><span>Door</span></button>
  54. <button class="move-button" id="move-up-right"><span>Butts</span></button>
  55. <button class="move-button" id="move-left"><span>Fen's Snack Pile</span></button>
  56. <button class="move-button" id="move-right"><span>Vore</span></button>
  57. <button class="move-button" id="move-down-left"><span>Dennis</span></button>
  58. <button class="move-button" id="move-down"><span>Ectoplasm</span></button>
  59. <button class="move-button" id="move-down-right"><span>E</span></button>
  60. </div>
  61. </div>
  62. </div>
  63. </body>