tor-browser

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

text-horzline.html (395B)


      1 <!DOCTYPE HTML>
      2 <html>
      3 <head>
      4 <title>Horizontal Line</title>
      5 </head>
      6 <body>
      7 <canvas id="c" width="128" height="64" style="direction:ltr"></canvas>
      8 <script type="text/javascript">
      9  var canvas = document.getElementById('c');
     10  var ctx = canvas.getContext('2d');
     11 
     12  ctx.strokeStyle = 'black';
     13  ctx.beginPath();
     14  ctx.moveTo(0,32);
     15  ctx.lineTo(128,32);
     16  ctx.stroke();
     17 
     18 </script>
     19 </body>
     20 </html>