|  | <!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <title>Satiate</title>
  <link rel="stylesheet" href="satiate.css">
  <script src="audio.js"></script>
  <script src="satiate.js"></script>
  <meta name="theme-color" content="#000000" />
  <meta name="description" content="A text adventure!" />
  <meta property="og:title" content="Satiate" />
  <meta property="og:description" content="A text adventure!" />
  <meta property="og:image" content="https://chemicalcrux.org/satiate.png" />
  <link rel="shortcut icon" href="https://chemicalcrux.org/favicon.ico" type="image/x-icon" />
</head>
<body>
  <div id="info-area">
    <div class="sidebar">
      <div id="menu">
        this is the menu, eventually
      </div>
      <div id="self-info">
        this is your own info
      </div>
    </div>
    <div id="log">
      this is the log
    </div>
    <div class="sidebar" id="area-info">
      this is the area info
    </div>
  </div>
  <div id="control-area">
    <div id="actions">
      <button class="action-button" id="load">Load Sounds</button>
      <button class="action-button" id="sfx">Play Sound</button>
      <button class="action-button" id="loop">Play Loop</button>
      <button class="action-button" id="stop">Stop Loop</button>
    </div>
    <div id="desc">
      this is a description of your action
    </div>
    <div id="moves">
      beep beep
      <div id="move-holder">
        <button class="move-button" id="move-up-left"><span>Potato Factory</span></button>
        <button class="move-button" id="move-up"><span>Door</span></button>
        <button class="move-button" id="move-up-right"><span>Butts</span></button>
        <button class="move-button" id="move-left"><span>Fen's Snack Pile</span></button>
        <button class="move-button" id="move-right"><span>Vore</span></button>
        <button class="move-button" id="move-down-left"><span>Dennis</span></button>
        <button class="move-button" id="move-down"><span>Ectoplasm</span></button>
        <button class="move-button" id="move-down-right"><span>E</span></button>
      </div>
    </div>
  </div>
</body>
 |