a munch adventure
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 
 

60 satır
2.1 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" id="load">Load Sounds</button>
  36. <button class="action-button" id="sfx">Play Sound</button>
  37. <button class="action-button" id="loop">Play Loop</button>
  38. <button class="action-button" id="stop">Stop Loop</button>
  39. </div>
  40. <div id="desc">
  41. this is a description of your action
  42. </div>
  43. <div id="moves">
  44. beep beep
  45. <div id="move-holder">
  46. <button class="move-button" id="move-up-left"><span>Potato Factory</span></button>
  47. <button class="move-button" id="move-up"><span>Door</span></button>
  48. <button class="move-button" id="move-up-right"><span>Butts</span></button>
  49. <button class="move-button" id="move-left"><span>Fen's Snack Pile</span></button>
  50. <button class="move-button" id="move-right"><span>Vore</span></button>
  51. <button class="move-button" id="move-down-left"><span>Dennis</span></button>
  52. <button class="move-button" id="move-down"><span>Ectoplasm</span></button>
  53. <button class="move-button" id="move-down-right"><span>E</span></button>
  54. </div>
  55. </div>
  56. </div>
  57. </body>