29 lines
567 B
CSS
29 lines
567 B
CSS
|
|
|
||
|
|
@font-face {
|
||
|
|
font-family: 'Open Sans';
|
||
|
|
font-style: normal;
|
||
|
|
font-weight: 400;
|
||
|
|
src: url('open-sans/Regular.ttf') format('truetype');
|
||
|
|
}
|
||
|
|
|
||
|
|
@font-face {
|
||
|
|
font-family: 'Open Sans';
|
||
|
|
font-style: normal;
|
||
|
|
font-weight: 700;
|
||
|
|
src: url('open-sans/Bold.ttf') format('truetype');
|
||
|
|
}
|
||
|
|
|
||
|
|
@font-face {
|
||
|
|
font-family: 'Open Sans';
|
||
|
|
font-style: italic;
|
||
|
|
font-weight: 400;
|
||
|
|
src: url('open-sans/Italic.ttf') format('truetype');
|
||
|
|
}
|
||
|
|
|
||
|
|
@font-face {
|
||
|
|
font-family: 'Open Sans';
|
||
|
|
font-style: italic;
|
||
|
|
font-weight: 700;
|
||
|
|
src: url('open-sans/BoldItalic.ttf') format('truetype');
|
||
|
|
}
|