tor-browser

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

windows-arabic-fallback-ref.html (475B)


      1 <!DOCTYPE html>
      2 <html lang="ar">
      3 <meta charset="utf-8">
      4 <style>
      5 /* On Windows, we map 'cursive' to Comic Sans MS; but the Arabic letters
      6   are not supported and should fall back to Arial */
      7 .a { font: 50px "Comic Sans MS", "Arial"; }
      8 /* On Windows, we map 'monospace' to Consolas, and the Arabic letters
      9   should fall back to Arial */
     10 .b { font: 50px "Consolas", "Arial"; }
     11 </style>
     12 <div class="a">السلام عليكم</div>
     13 <div class="b">السلام عليكم</div>