tor-browser

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

stroketext-shadow-ref.html (476B)


      1 <!--docytpe html-->
      2 <html><head>
      3 <meta http-equiv="content-type" content="text/html; charset=UTF-8">
      4 <meta charset="UTF-8">
      5 <script>
      6 window.onload=function(){
      7 c=document.getElementById("myCanvas").getContext("2d");
      8 c.canvas.width=c.canvas.width;
      9 c.font="35px sans-serif";
     10 c.shadowColor="darkblue";
     11 c.shadowBlur=2;
     12 c.strokeText('ABCDEF',20,100);
     13 }
     14 </script>
     15 </head>
     16 <body>
     17 <canvas id="myCanvas" height="500" width="500" style="border:1px solid black"></canvas>
     18 
     19 </body></html>