tor-browser

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

opentype-small-caps-1-ref.html (335B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4 <meta charset="utf-8">
      5 <style>
      6 /* load a font that supports the OpenType 'smcp' feature */
      7 @font-face {
      8  font-family: test;
      9  src: url(../fonts/LinLibertine_Re-4.7.5.woff);
     10 }
     11 body {
     12  font: 100px test;
     13 }
     14 div {
     15  font-feature-settings: 'smcp' on;
     16 }
     17 </style>
     18 </head>
     19 <body>
     20 <div>Small Caps
     21 </body>
     22 </html>