graphite-small-caps-1.html 316 B

1234567891011121314151617181920
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <style>
  6. /* load a font that supports the Graphite 'smcp' feature */
  7. @font-face {
  8. font-family: test;
  9. src: url(../fonts/sil/CharisSIL-R.ttf);
  10. }
  11. body {
  12. font: 100px test;
  13. }
  14. </style>
  15. </head>
  16. <body>
  17. <div style="font-variant:small-caps">Small Caps
  18. </body>
  19. </html>