tor-browser

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

802658-1-ref.html (405B)


      1 <!docytpe html>
      2 <html>
      3 <head>
      4 <meta charset="UTF-8" />
      5 <script>
      6 window.onload=function(){
      7 
      8 var c=document.getElementById("myCanvas").getContext("2d");
      9 
     10 c.font="35px sans-serif";
     11 
     12 c.shadowBlur=60;
     13 c.shadowColor="blue";
     14 
     15 c.fillText("ABCDEFG",100,100);
     16 
     17 
     18 
     19 }
     20 </script>
     21 </head>
     22 <body>
     23 <canvas id="myCanvas" height=400 width=400 style="border:1px solid black"></canvas>
     24 </body>
     25 </html>