font-synthesis-1-ref.html (419B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset="utf-8"> 5 <style> 6 @font-face { 7 font-family: test; 8 src: url(../fonts/sil/GenR102.ttf); 9 } 10 body { 11 font-family: test; /* family that lacks bold and italic faces */ 12 font-size: 36px; 13 margin: 1em; 14 } 15 </style> 16 </head> 17 <body> 18 <p>Hello, <i>cruel</i> <b>world<i>!</i></b> 19 <p>Hello, cruel <b>world!</b> 20 <p>Hello, <i>cruel</i> world<i>!</i> 21 <p>Hello, cruel world! 22 </body> 23 </html>