Importing Font to WP?
Importing Font to WP?
Out of context: Reply #4
- Started
- Last post
- 5 Responses
- elahon0
Try uploading your font here and using the CSS that FontSquirrel provides.
http://www.fontsquirrel.com/tool…
CSS from FontSquirrel usually looks like this:
@font-face {
font-family: 'GoodDogRegular';
src: url('GoodDog-webfont.eot');
src: url('GoodDog-webfont.eot?#iefix... format('embedded-opentype'),
url('GoodDog-webfont.woff') format('woff'),
url('GoodDog-webfont.ttf') format('truetype'),
url('GoodDog-webfont.svg#GoodDog... format('svg');
font-weight: normal;
font-style: normal;
}
Then below that, declare your H1, H2, etc:h1 {font: 180%/1.5em "GoodDogRegular", Times New Roman, serif;}