tor-browser

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

385681.html (560B)


      1 <html><head>
      2 <title></title>
      3 <style>
      4 a  {
      5 font-variant: small-caps; 
      6 }
      7 a:hover { 
      8  color: red;
      9 }
     10 </style>
     11 </head>
     12 <body>
     13 <a href="#">home</a><br>
     14 <a href="#">login</a><br>
     15 <a href="#">signup</a><br>
     16 
     17 <script>
     18 function doe(i) {
     19 if (!i) {
     20  document.links[1].style.color='red';
     21 document.links[0].offsetHeight;
     22 document.links[0].style.color = 'red';
     23 }
     24 else {
     25  document.links[1].style.color='blue';
     26 document.links[0].style.color = 'blue';
     27 }
     28 setTimeout(doe, 100, !i);
     29 }
     30 setTimeout(doe, 500, true);
     31 </script>
     32 </body>
     33 
     34 </html>