实例代码“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.ttf')
9
    ,url('Sansation_Light.eot'); /* IE9 */
10
}
11
12
div
13
{
14
font-family:myFirstFont;
15
}
16
</style>
17
</head>
18
<body>
19
20
<p><b>Note:</b> Internet Explorer 9 only supports .eot fonts.</p>
21
22
<div>
23
With CSS3, websites can finally use fonts other than the pre selected "web-safe" fonts.
24
</div>
25
26
</body>
27
</html>
28
29