multiple-in-family-1b.html (581B)
1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" 2 "http://www.w3.org/TR/html4/strict.dtd"> 3 <html lang="en-US"> 4 <head> 5 <title></title> 6 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> 7 <style type="text/css"> 8 9 /* This has the @font-face rules in the other order, in case that matters */ 10 11 @font-face { 12 font-family: "MarkB"; 13 src: url(../fonts/markB.ttf); 14 } 15 16 @font-face { 17 font-family: "MarkA"; 18 src: url(../fonts/markA.ttf); 19 } 20 21 body { font-family: "MarkA", "MarkB"; } 22 23 </style> 24 </head> 25 <body> 26 27 <p>ABC</p> 28 <p>A</p> 29 <p>B</p> 30 <p>C</p> 31 32 </body> 33 </html>