blob: 009b2f08713f3073a625b108bc7a1e0a5e59f6bf (
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
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
|
<!DOCTYPE html>
<style>
@font-face {
font-family: bar;
src: url(bad/font/name.ttf), url(ostrich-regular.ttf) format("truetype");
}
@font-face {
font-family: barnormal;
font-weight: normal;
src: url(ostrich-regular.ttf);
}
@font-face {
font-family: bar;
font-weight: bold;
src: url(ostrich-black.ttf);
}
@font-face {
font-family: bar;
font-weight: 800;
src: url(ostrich-black.ttf);
}
body{
font-family:Arial;
font-size: 36px;
}
div {
font-family:Arial;
font-family:bar;
}
.normal-text {
font-family: barnormal;
font-weight: normal;
}
.bold-text {
font-family: bar;
font-weight: bold;
}
.black-text {
font-family: bar;
font-weight: 800;
}
</style>
<body>
BODY
<div>DIV</div>
<iframe src="test_iframe.html"></iframe>
<div class="normal-text">NORMAL DIV</div>
<div class="bold-text">BOLD DIV</div>
<div class="black-text">800 DIV</div>
</body>
|