案例:CSS3 案例     状态:可编辑再运行    进入竖版
 运行结果 
x
 
1
<html>
2
<head>
3
<style type="text/css">
4
p.serif{font-family:"Times New Roman",Georgia,Serif}
5
p.sansserif{font-family:Arial,Verdana,Sans-serif}
6
</style>
7
</head>
8
9
<body>
10
<h1>CSS font-family</h1>
11
<p class="serif">This is a paragraph, shown in the Times New Roman font.</p>
12
<p class="sansserif">This is a paragraph, shown in the Arial font.</p>
13
14
</body>
15
</html>
16