19 lines
528 B
CSS
19 lines
528 B
CSS
|
@font-face {
|
||
|
font-family: 'Lora';
|
||
|
font-style: normal;
|
||
|
font-weight: 400;
|
||
|
src: local('Lora Regular'), local('Lora-Regular'), url(lora/Lora-Regular.ttf) format('truetype');
|
||
|
}
|
||
|
@font-face {
|
||
|
font-family: 'Lora';
|
||
|
font-style: italic;
|
||
|
font-weight: 400;
|
||
|
src: local('Lora Italic'), local('Lora-Italic'), url(lora/Lora-Italic.ttf) format('truetype');
|
||
|
}
|
||
|
@font-face {
|
||
|
font-family: 'Lora';
|
||
|
font-style: normal;
|
||
|
font-weight: 700;
|
||
|
src: local('Lora Bold'), local('Lora-Bold'), url(lora/Lora-Bold.ttf) format('truetype');
|
||
|
}
|