apple-symbols-1.html (595B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset="utf-8"> 5 <title>Apple Symbols test</title> 6 <style> 7 @font-face { 8 font-family: "Ahem"; 9 src: url(../fonts/Ahem.ttf); 10 } 11 body { 12 font-family: "Ahem", /* Ahem bullet first to establish consistent line metrics */ 13 "Apple Symbols", /* Apple Symbols for the rest of the chars */ 14 "Menlo", /* fallbacks for when Apple Symbols fails */ 15 "Hiragino Kaku Gothic Pro", 16 sans-serif; 17 font-size: 36px; 18 line-height: 60px; 19 } 20 </style> 21 </head> 22 <body> 23 ∙◦◎☑☞ 24 </body> 25 </html>