tor-browser

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

links.html (691B)


      1 <html>
      2  <head>
      3    <meta charset="utf-8" />
      4    <title>Links</title>
      5    <style>
      6      :link {
      7        color: rgb(0, 0, 255);
      8      }
      9 
     10      :visited {
     11        color: rgb(255, 0, 0);
     12      }
     13    </style>
     14  </head>
     15  <body>
     16    <ul>
     17      <li><a id="mozilla" href="https://mozilla.org">Mozilla</a></li>
     18      <li><a id="firefox" href="https://getfirefox.com">Get Firefox!</a></li>
     19      <li><a id="bugzilla" href="https://bugzilla.mozilla.org">Bugzilla</a></li>
     20      <li>
     21        <a id="testpilot" href="https://testpilot.firefox.com">Test Pilot</a>
     22      </li>
     23      <li>
     24        <a id="fxa" href="https://accounts.firefox.com">Firefox Accounts</a>
     25      </li>
     26    </ul>
     27  </body>
     28 </html>