tor-browser

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

389623-1-ref.html (314B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4 <style type="text/css">
      5 .float, .float + div {
      6 float: left;
      7 height: 200px;
      8 width: 100px;
      9 background: #ccc;
     10 }
     11 .float + div{
     12 float:right;
     13 }
     14 #bg {
     15 background: #999;
     16 height: 100px;
     17 }
     18 </style>
     19 </head>
     20 <body>
     21 <div class="float"></div>
     22 <div></div>
     23 <div id="bg"></div>
     24 </body>
     25 </html>