Разместите свой код?
Снято в темноте, но вы включили все соответствующие файлы шрифтов? Это пример того, как должен выглядеть ваш @ font-face (по крайней мере, мой)
@font-face {
font-family: 'Museo300';
src: url('Museo300-Regular-webfont.eot');
src: url('Museo300-Regular-webfont.eot?#iefix') format('embedded-opentype'),
url('Museo300-Regular-webfont.woff') format('woff'),
url('Museo300-Regular-webfont.ttf') format('truetype'),
url('Museo300-Regular-webfont.svg#Museo300') format('svg');
font-weight: normal;
font-style: normal;
}
У меня есть следующие файлы шрифтов:
Museo300-Regular-webfont.eot
Museo300-Regular-webfont.svg
Museo300-Regular-webfont.ttf
Museo300-Regular-webfont.woff
Тогда в вашей таблице стилей:
h1 {
font-family: "Museo300";
font-weight: normal;
}