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