<!doctype html>
<html lang="en">
  <head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <meta name="color-scheme" content="light dark">
    <link rel="stylesheet" href="pico.min.css">
    <link rel="stylesheet" href="index.css">
    <script src="index.js"></script>
    <title>Tooner 0</title>
  </head>
  <body>
    <main class="container">
      <article>
        <div id="keyboard" class="overflow-auto"></div>
        <label>
          Volume
          <input type="range" min="0.0" max="2.0" value="1.0" step="0.01" id="volume">
        </label>
      </article>
      <section id="options">
        <article>
          <h3 id="current-note">-</h3>
          <label>
            <input type="checkbox" role="switch" id="hold">
            Hold
          </label>
        </article>
        <article>
          <label>
            <small>Frequency</small>
            <input type="number" id="current-frequency" step="0.01">
          </label>
          <label>
            <small id="adjust-value">- Hz</small>
            <input type="range" min="0.944" max="1.059" value="1.0" step="0.001" id="adjust">
          </label>
        </article>
        <article>
          <fieldset>
            <legend><small>Tuning</small></legend>
            <label>
              <input type="radio" name="tuning" value="equal">
              Equal temperament
            </label>
            <label>
              <input type="radio" name="tuning" value="5th">
              Perfect 5th
            </label>
            <label>
              <input type="radio" name="tuning" value="4th">
              Perfect 4th
            </label>
            <label>
              <input type="radio" name="tuning" value="maj3rd">
              Perfect major 3rd
            </label>
            <label>
              <input type="radio" name="tuning" value="min3rd">
              Perfect minor 3rd
            </label>
            <label>
              From:
              <select id="tuning-from"></select>
            </label>
            <button id="tune">Tune</button>
          </fieldset>
        </article>
        <article>
          <button class="secondary" id="reset">Reset all</button>
          <button class="secondary" id="zero">Zero all</button>
        </article>
      </section>
    </main>
  </body>
</html>