tor-browser

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

802658-1.html (422B)


      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.translate(100,100);
     13 c.shadowBlur=60;
     14 c.shadowColor="blue";
     15 
     16 c.fillText("ABCDEFG",0,0);
     17 
     18 
     19 
     20 }
     21 </script>
     22 </head>
     23 <body>
     24 <canvas id="myCanvas" height=400 width=400 style="border:1px solid black"></canvas>
     25 </body>
     26 </html>