-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
146 lines (129 loc) · 3.35 KB
/
index.html
File metadata and controls
146 lines (129 loc) · 3.35 KB
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
<!doctype html>
<html>
<head>
<title>Debugging Win7 Font Loading Failure</title>
<style>
@font-face {
font-family: 'Web v141';
font-style: normal;
font-weight: 400;
src: url(v141.otf) format('opentype');
}
@font-face {
font-family: 'Web v142';
font-style: normal;
font-weight: 400;
src: url(v142.otf) format('opentype');
}
@font-face {
font-family: 'Original v141';
font-style: normal;
font-weight: 400;
src: url(original-v141.otf) format('opentype');
}
@font-face {
font-family: 'Original v142';
font-style: normal;
font-weight: 400;
src: url(original-v142.otf) format('opentype');
}
@font-face {
font-family: 'Original HB v141';
font-style: normal;
font-weight: 400;
src: url(original-hb-v141.otf) format('opentype');
}
@font-face {
font-family: 'Original HB v142';
font-style: normal;
font-weight: 400;
src: url(original-hb-v142.otf) format('opentype');
}
@font-face {
font-family: 'FT v141';
font-style: normal;
font-weight: 400;
src: url(v141-ft.otf) format('opentype');
}
@font-face {
font-family: 'FT v142';
font-style: normal;
font-weight: 400;
src: url(v142-ft.otf) format('opentype');
}
@font-face {
font-family: 'FT HB v141';
font-style: normal;
font-weight: 400;
src: url(v141-ft-hb.otf) format('opentype');
}
@font-face {
font-family: 'FT HB v142';
font-style: normal;
font-weight: 400;
src: url(v142-ft-hb.otf) format('opentype');
}
span.web_141 {
font-family: "Web v141";
}
span.web_142 {
font-family: "Web v142";
}
span.original_141 {
font-family: "Original v141";
}
span.original_142 {
font-family: "Original v142";
}
span.original_hb_141 {
font-family: "Original HB v141";
}
span.original_hb_142 {
font-family: "Original HB v142";
}
span.ft_141 {
font-family: "FT v141";
}
span.ft_142 {
font-family: "FT v142";
}
span.ft_hb_141 {
font-family: "FT HB v141";
}
span.ft_hb_142 {
font-family: "FT HB v142";
}
span {
font-weight: normal;
font-style: normal;
font-size: 60px;
line-height: 1;
letter-spacing: normal;
text-transform: none;
display: inline-block;
white-space: nowrap;
word-wrap: normal;
direction: ltr;
-webkit-font-feature-settings: 'liga';
-webkit-font-smoothing: antialiased;
}
</style>
</head>
<body>
web 141: <span class="web_141">home logout</span><br/>
web 142: <span class="web_142">home logout</span><br/>
<br/>
original 141: <span class="original_141">home logout</span><br/>
original 142: <span class="original_142">home logout</span><br/>
<br/>
original hb 141: <span class="original_hb_141">home logout</span><br/>
original hb 142: <span class="original_hb_142">home logout</span><br/>
<br/>
ft 141: <span class="ft_141">home logout</span><br/>
ft 142: <span class="ft_142">home logout</span><br/>
<br/>
ft hb 141: <span class="ft_hb_141">home logout</span><br/>
ft hb 142: <span class="ft_hb_142">home logout</span><br/>
<br/>
</body>
</html>