I think you are on the right track, but you need to update your file paths. You've placed the fonts in the /fonts/ folder, but that's not where you are telling your style sheet to find them. This:
Code:
@font-face {
font-family: 'earthworm_jimregular';
src: url('jim-webfont.eot');
src: url('jim-webfont.eot?#iefix') format('embedded-opentype'),
url('jim-webfont.woff') format('woff'),
url('jim-webfont.ttf') format('truetype'),
url('jim-webfont.svg#earthworm_jimregular') format('svg');
font-weight: normal;
font-style: normal;
}
should be this:
Code:
@font-face {
font-family: 'earthworm_jimregular';
src: url('fonts/jim-webfont.eot');
src: url('fonts/jim-webfont.eot?#iefix') format('embedded-opentype'),
url('fonts/jim-webfont.woff') format('woff'),
url('fonts/jim-webfont.ttf') format('truetype'),
url('fonts/jim-webfont.svg#earthworm_jimregular') format('svg');
font-weight: normal;
font-style: normal;
}
See if that helps.
Bookmarks