| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 | <!DOCTYPE html><html>  <head>    <title>OSMD Demo</title>    <script src="osmd-demo.js"></script>    <script src="demo.js"></script>    <link href="demo.css" media="all" rel="stylesheet" />  </head>  <body>    <h1>Open Sheet Music Display Demo</h1>    <table cellspacing="0">      <tr>        <td class="bignum">1</td>        <td>          <p>            Select a sample from the list below...          </p>          <select id="select"></select>          <p>... or just drag'n'drop your MusicXML file on this page.</p>        </td>      </tr>      <tr>        <td class="bignum">2</td>        <td>          <p>Current width: <span id="size-str">???</span>px</p>          <p>Zoom factor: <span id="zoom-str">???</span>%</p>          <p>            Zoom controls:            <input type="button" value="zoom in" id="zoom-in-btn"/>            <input type="button" value="zoom out" id="zoom-out-btn"/>          </p>          <p>Cursor controls:            <input type="button" value="show" id="show-cursor-btn"/>            <input type="button" value="hide" id="hide-cursor-btn"/>            <input type="button" value="next" id="next-cursor-btn"/>          </p>        </td>      </tr>      <tr id="error-tr">        <td></td>        <td id="error-td"></td>      </tr>    </table>  </body></html>
 |