tor-browser

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

caps-fallback-smcp.html (486B)


      1 <!DOCTYPE HTML>
      2 <html>
      3 <head>
      4 <title>font-variant-caps fallback</title>
      5 <meta charset="UTF-8">
      6 <style>
      7 
      8 /* Fira Sans only supports smcp/c2sc, not pcap/c2pc */
      9 @font-face {
     10  font-family: firasans;
     11  src: url(../fonts/fira/FiraSans-Regular.otf);
     12 }
     13 
     14 body {
     15  margin: 20px;
     16  font-family: firasans, sans-serif;
     17 }
     18 
     19 p {
     20  margin: 0;
     21  font-size: 50px;
     22 }
     23 
     24 .smcp { font-feature-settings: "smcp" on; }
     25 </style>
     26 </head>
     27 <body>
     28 <p class=smcp>Aa Bb Gg Δδ Γγ Σσ Бб Фф</p>
     29 </body>
     30 </html>