W3School TIY Editor
W3School 在线教程
改变方向
暗黑模式
运行代码
<!DOCTYPE html> <html> <head> <style> @font-face { font-family: myFirstFont; src: url(sansation_light.woff); } @font-face { font-family: myFirstFont; src: url(sansation_bold.woff); font-weight: bold; } * { font-family: myFirstFont; } </style> </head> <body> <h1>@font-face 规则</h1> <div> 通过 CSS,网站可以使用<b>预选的 "web-safe" 字体以外的其他字体</b>。 </div> <p><b>注释:</b>Internet Explorer 8 以及更早的版本不支持 @font-face 规则。</p> </body> </html>