tor-browser

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

ex-unit-1.html (439B)


      1 <!DOCTYPE html>
      2 <!-- modeled on ../font-face/ex-unit-1.html -->
      3 <html class="reftest-wait">
      4 <title>ex unit with Ahem font</title>
      5 <style>
      6 html { background: white; }
      7 body { font-family: Ahhhem; font-size: 50px; height: 2ex; width: 2ex; background: blue;  }
      8 </style>
      9 <script>
     10 document.fonts.add(new FontFace("Ahhhem", "url(../fonts/Ahem.ttf)"));
     11 document.fonts.ready.then(function() { document.documentElement.className = ""; });
     12 </script>