Load Custom Font with CSS - TTF and OTF Font Files

@font-face {  
  font-family: eurostile ;  
  src: url(fonts/Eurostile-ExtendedTwo.otf) format("truetype");  
}  
 
/* Then use it like you would any other font */  
.eurostile { font-family: eurostile , verdana, helvetica, sans-serif;  
}