I am trying to incorporate an eot/ttf file named "steve.ttf"/"steve.eot" into a CSS, but I am seeing no changes being made. The font items are located in the same folder as the html document.
Here is the code I am using:
@font-face {
font-family: MyCustomFont;
src: url("steve.eot");
src: local("steve.ttf") format("truetype");
}
p.style1{
font: MyCustomFont;
}
and I'm trying to insert it into this:
<p class="style1">This shoud be My New Font</p>
Do you see any errors (I'm trying to use firefox and IE)?