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