blob: ce1b30b3ef40aa0fd0f70326c3856faa0f2798fa (
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
|
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<style type="text/css" id="style1">
@font-face {
font-family: foo;
src: local("Arial"),
local("DejaVu Sans"),
local("Free Sans"),
local("Open Sans"),
local("Droid Sans"),
local("Roboto");
}
</style>
<style type="text/css">
body {
font-family: serif;
}
.test {
font-family: foo;
}
</style>
</head>
<body>
<div>
foo <span class="test">bar</span> baz
</div>
</body>
</html>
|