运行 ❯
获取您
自己的
网站
×
更改方向
保存代码
更改主题,暗/亮
转到 Spaces
<!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; } div { font-family: myFirstFont; } </style> </head> <body> <h1>The @font-face Rule</h1> <div>With CSS, websites can use fonts other than the pre-selected "web-safe" fonts.</div> </body> </html>