tor-browser

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

component-alpha-1.html (382B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4 <meta http-equiv="content-type" content="text/html; charset=UTF-8">
      5 <meta charset="utf-8">
      6 <title>red box</title>
      7 <style>
      8 
      9 #wrapper {
     10  perspective: 0px;
     11 }
     12 
     13 #shape {
     14  background-color: red;
     15 
     16  width: 200px;
     17  height: 200px;
     18 
     19  transform: rotateX(0deg);
     20 }
     21 </style>
     22 
     23 </head>
     24 <body>
     25 <div id="wrapper">
     26  <div id="shape">foo</div>
     27 </div>
     28 
     29 </body>
     30 </html>