html5 section简单示例

1、实例完整源代码:

<!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>

2、section标签使用截图