CSS3使用自定义字体(font-face)

@font-face
{
font-family: myFirstFont;
src: url('Sansation_Light.ttf'),
     url('Sansation_Light.eot'); /* IE9+ */
}
 
div
{
font-family:myFirstFont;
}


你可能感兴趣的:(css3)