案例:CSS案例     状态:可编辑再运行    进入竖版
 运行结果 
x
 
1
<html>
2
<head>
3
<style type="text/css">
4
h1 {font-family:Georgia, serif;}
5
p {font-family: Times, TimesNR, 'New Century Schoolbook', Georgia, 'New York', serif;}
6
</style>
7
</head>
8
9
<body>
10
<h1>This is heading 1</h1>
11
12
<p>This is a paragraph.</p>
13
14
<p>This is a paragraph.</p>
15
16
<p>...</p>
17
</body>
18
</html>
19