实例代码“Ctrl+/”提示“F11/ESC”全屏 返回 格式化 恢复 运行
x
 
1
<!DOCTYPE html>
2
<html>
3
<head>
4
<style> 
5
@font-face
6
{
7
font-family: myFirstFont;
8
src: url(sansation_light.woff);
9
}
10
11
@font-face
12
{
13
font-family: myFirstFont;
14
src: url(sansation_bold.woff);
15
font-weight:bold;
16
}
17
18
div
19
{
20
font-family:myFirstFont;
21
}
22
</style>
23
</head>
24
<body>
25
26
<div>
27
With CSS3, websites can <b>finally</b> use fonts other than the pre-selected "web-safe" fonts.
28
</div>
29
30
<p><b>Note:</b> Internet Explorer 8 and earlier, do not support the @font-face rule.</p>
31
32
</body>
33
</html>
34