Aaron Lindsay
93d23c225f
If they are absolute paths, you have to pick one of http or https, which causes issues if youre website is accessible on both.
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');
|
|
}
|