html5 section简单示例

实例完整源代码:

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>section 实例 CSS5</title>
<style>
.abc{ color:#F00}
</style>
</head>

<body> <section> <h1>主题一</h1> <p>文章模式CSS武艺上CSS5网 ...</p> </section> <section class="abc"> <h2>主题二</h2> <p>DIV CSS技艺学习上CSS5网 ...</p> </section> </body> </html>