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.
 
 
 
 

57 satır
1.7 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. these are the actions
  36. </div>
  37. <div id="desc">
  38. this is a description of your action
  39. </div>
  40. <div id="moves">
  41. beep beep
  42. <div id="move-holder">
  43. <button class="move-button" id="move-up-left">NW</button>
  44. <button class="move-button" id="move-up">N</button>
  45. <button class="move-button" id="move-up-right">NE</button>
  46. <button class="move-button" id="move-left">W</button>
  47. <button class="move-button" id="move-right">E</button>
  48. <button class="move-button" id="move-down-left">SW</button>
  49. <button class="move-button" id="move-down">S</button>
  50. <button class="move-button" id="move-down-right">SE</button>
  51. </div>
  52. </div>
  53. </div>
  54. </body>