自定义字体

使用自定义字体

工具:ttf2eot
http://code.google.com/p/ttf2eot/wiki/Demo
转换方法:ttf2eot.ext msyh.ttf msyh.eot


@font-face {  
    font-family: "msyh"; 
    src: url("css/font/msyh.ttf") format("truetype"); 
} 
</style> 
<!--[if IE]> 
<style> 
@font-face {  
    font-family: "msyh"; 
    src: url("css/font/msyh.eot"); 
} 
</style> 
<![endif]-->

<style>
*{
  font-family:"msyh";
}
</style> 

你可能感兴趣的:(css,IE,ttf2eot)