blob: bd0a1481fc9a5ebddbe7bbfefb434646c05ffc96 (
plain) (
blame)
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
|
@font-face {
font-family: "Times New Roman";
src:
local("Times New Roman"),
url("/times/times.ttf");
}
@font-face {
font-family: "Times New Roman";
font-weight: bold;
src:
local("Times New Roman"),
url("/times/bold.ttf");
}
@font-face {
font-family: "Times New Roman";
font-style: italic;
src:
local("Times New Roman"),
url("/times/italic.ttf");
}
@font-face {
font-family: "Times New Roman";
font-weight: bold;
font-style: italic;
src:
local("Times New Roman"),
url("/times/bold-italic.ttf");
}
|