I have .ttf and .eot versions of the fonts I'm trying to use, and the fonts are displaying properly in Chrome, Firefox, Safari, and Opera. In IE however, it shows Arial.
The page is visible at: http://www.itnetpros.com
Here are the font-face rules and one of the elements that should be using the fonts in my css:
Code:
@font-face {
font-family: humnst777;
src: url(../fonts/Hum777l.ttf), url(../fonts/Hum777l.eot);
}
@font-face {
font-family: humnst777n;
src: url(../fonts/Hum777n.ttf), url(../fonts/Hum777n.eot);
}
h1 {
font: 100 30px/30px humnst777, Arial, Helvetica, sans-serif;
color: #393e47;
margin: 0 30px;
padding: 80px 0 0 0;
}
If anyone could tell me what I'm missing, it would be greatly appreciated.
|