1234567891011121314151617181920 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8">
- <style>
- /* load a font that does NOT support the 'smcp' feature */
- @font-face {
- font-family: test;
- src: url(../fonts/dejavu-sans/DejaVuSans.ttf);
- }
- body {
- font: 100px test;
- }
- </style>
- </head>
- <body>
- <div style="font-variant:small-caps">Small Caps
- </body>
- </html>
|