tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

in-cells.html (453B)


      1 <!DOCTYPE html>
      2 <html>
      3  <link rel='stylesheet' type='text/css' href='style.css'>
      4  <style>
      5    progress.vertical { -moz-orient: vertical; }
      6  </style>
      7  <body>
      8    <table>
      9      <tr>
     10        <td>foo</td>
     11        <td><progress value='0.5'></progress></td>
     12        <td>bar</td>
     13      </tr>
     14      <tr>
     15        <td>foo</td>
     16        <td><progress class='vertical' value='0.5'></progress></td>
     17        <td>bar</td>
     18      </tr>
     19    </table>
     20  </body>
     21 </html>