案例:html/html5 案例     状态:可编辑再运行    进入竖版
 运行结果 
x
 
1
<html>
2
<head>
3
<style type="text/css">
4
h1.intro {color:blue;}
5
p.important {color:red;}
6
</style>
7
</head>
8
9
<body>
10
<h1 class="intro">Header 1</h1>
11
<p>A paragraph.</p>
12
<p class="important">请注意这个重要的段落。:)</p>
13
</body>
14
15
</html>
16