CSS3
CSS3 字体
如需为 HTML 元素使用字体,请通过 font-family 属性来引用字体的名称 (myFirstFont)
源代码:
点击运行 »
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <style> @font-face { font-family: myFirstFont; src: url("/examples/Sansation_Light.ttf"), url('Sansation_Light.eot'); /* IE9 */ } div { font-family: myFirstFont; } </style> </head> <body> <p><b>注意:</b> Internet Explorer 9 只支持 .eot 格式的字体.</p> <div> 使用 CSS3,网站终于可以使用字体以外的预先选择“合法”字体 </div> </body> </html>
运行结果:
点击运行 »