tor-browser

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

installing.html (965B)


      1 <!doctype html>
      2 
      3 <!-- This Source Code Form is subject to the terms of the Mozilla Public
      4   - License, v. 2.0. If a copy of the MPL was not distributed with this
      5   - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
      6 
      7 <html>
      8  <head>
      9    <meta charset="UTF-8" />
     10    <meta http-equiv="X-UA-Compatible" content="IE=8" />
     11 
     12    <link rel="stylesheet" href="stub_common.css" />
     13    <link rel="stylesheet" href="installing_page.css" />
     14 
     15    <script src="stub_common.js"></script>
     16    <script src="installing.js"></script>
     17  </head>
     18  <body>
     19    <img id="background" src="bgstub.jpg" alt="" role="presentation" />
     20 
     21    <div id="label" tabindex="0"></div>
     22 
     23    <div id="progress_background">
     24      <div
     25        id="progress_bar"
     26        role="progressbar"
     27        aria-labelledby="label"
     28        aria-valuemin="0"
     29        aria-valuemax="100"
     30        aria-valuenow="0"
     31        tabindex="0"
     32      ></div>
     33    </div>
     34 
     35    <div id="blurb"></div>
     36  </body>
     37 </html>