fake-small-caps-1-ref.html (344B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset="utf-8"> 5 <style> 6 /* load a font that does NOT support the 'smcp' feature */ 7 @font-face { 8 font-family: test; 9 src: url(../fonts/dejavu-sans/DejaVuSans.ttf); 10 } 11 body { 12 font: 100px test; 13 } 14 span { 15 font-size: 80px; 16 } 17 </style> 18 </head> 19 <body> 20 <div>S<span>MALL</span> C<span>APS</span> 21 </body> 22 </html>