tor-browser

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

412679-1.html (692B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4 <title></title>
      5 <style>
      6 #red {
      7  position: fixed;
      8  background-color: blue;
      9  top: 10px;
     10  left: 10px;
     11  right: 100px;
     12  bottom: 100px;
     13 }
     14 
     15 #green {
     16  position: fixed;
     17  background-color: blue;
     18  top: 10px;
     19  width: 80px;
     20  right: 10px;
     21  bottom: 100px;
     22 }
     23 
     24 #blue {
     25  position: fixed;
     26  background-color: blue;
     27  left: 10px;
     28  height: 80px;
     29  right: 100px;
     30  bottom: 10px;
     31 }
     32 
     33 #yellow {
     34  position: fixed;
     35  background-color: blue;
     36  right: 10px;
     37  width: 80px;
     38  height: 80px;
     39  bottom: 10px;
     40 }
     41 
     42 </style>
     43 <script>
     44 
     45 </script>
     46 </head>
     47 <body>
     48 
     49 <iframe id=red></iframe>
     50 <iframe id=green></iframe>
     51 <iframe id=blue></iframe>
     52 <iframe id=yellow></iframe>
     53 
     54 </body>
     55 </html>