load-badfullname.html (724B)
1 <!DOCTYPE HTML> 2 <html> 3 <head> 4 <title>Test of fonts with funky fullnames</title> 5 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 6 7 <style type="text/css"> 8 9 @font-face { 10 font-family: test1; 11 src: url(../fonts/markA-badfullname.ttf); 12 } 13 14 @font-face { 15 font-family: test2; 16 src: url(../fonts/markA-shortfullname.ttf); 17 } 18 19 body { 20 margin: 50px; 21 font-size: 12pt; 22 font-family: Gill Sans, Futura, sans-serif; 23 } 24 25 p.test1 { font-size: 48pt; font-family: test1, Futura, sans-serif; } 26 p.test2 { font-size: 48pt; font-family: test2, Futura, sans-serif; } 27 28 </style> 29 30 </head> 31 <body> 32 33 <p>Letter A should <strong>not</strong> appear below:</p> 34 35 <p class="test1">A</p> 36 37 <p class="test2">A</p> 38 39 </body> 40 </html>