以下是一个简单的示例:
<!DOCTYPE html>
<html>
<head>
<title>Section Example</title>
</head>
<body>
<section>
<h2>Section 1</h2>
<p>This is the content of section 1.</p>
</section>
<section>
<h2>Section 2</h2>
<p>This is the content of section 2.</p>
</section>
</body>
</html>
在这个例子中,有两个 <section> 标签,每个 <section> 包含一个标题 (<h2>) 和一个段落 (<p>)。通过使用 <section>,你可以将文档划分为不同的区域,以便更好地组织和理解页面的结构。
请注意,<section> 并不会添加样式或布局,它主要是为了语义化文档结构。在使用时,应根据文档内容的逻辑结构来选择是否使用 <section>。
转载请注明出处:http://www.zyzy.cn/article/detail/3897/HTML