10 lines
198 B
CSS
10 lines
198 B
CSS
|
/**
|
||
|
* Handle Self-hosted True Type Fonts
|
||
|
*/
|
||
|
@font-face {
|
||
|
font-family: 'Cardo';
|
||
|
font-style: normal;
|
||
|
font-weight: normal;
|
||
|
src: local('Cardo'), url('../fonts/Cardo99s.ttf') format('truetype');
|
||
|
}
|