案例:html/html5 案例     状态:可编辑再运行    进入竖版
 运行结果 
x
 
1
<html>
2
<head>
3
<style type="text/css">
4
h1.intro
5
{
6
color:blue;
7
text-align:center;
8
}
9
.important {background-color:yellow;}
10
</style>
11
</head>
12
13
<body>
14
<h1 class="intro important">Header 1</h1>
15
<p>A paragraph.</p>
16
</body>
17
18
</html>
19