forked from boratanrikulu/eternity
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfonts.html
33 lines (29 loc) · 926 Bytes
/
fonts.html
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
<style>
@font-face {
font-family: 'Open Sans Regular';
src: url({{ "fonts/OpenSans/OpenSans-Regular.ttf" | absURL }}) format('truetype');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'Open Sans Bold';
src: url({{ "fonts/OpenSans/OpenSans-Bold.ttf" | absURL }}) format('truetype');
font-weight: bold;
font-style: normal;
}
@font-face {
font-family: 'Open Sans Italic';
src: url({{ "fonts/OpenSans/OpenSans-Italic.ttf" | absURL }}) format('truetype');
font-weight: normal;
font-style: italic;
}
@font-face {
font-family: 'Open Sans Bold Italic';
src: url({{ "fonts/OpenSans/OpenSans-BoldItalic.ttf" | absURL }}) format('truetype');
font-weight: bold;
font-style: italic;
}
body {
font-family: "Open Sans Regular";
}
</style>