English[?sek?n] US[?s?k??n]

n.Part; section; component; department

vi. Cut; cut; make (animal or plant tissue) slices; cut ( Mental patients) were formally sent to a mental hospital

vt. To cut… into slices (or segments); to make slices of…; to make sections of…; to make cross-sections of…

Third person singular : sections Plural: sections Present participle: sectioning Past tense: sectioned Past participle: sectioned

html section tag syntax

Function: Define sections (sections, sections) in the document. Such as chapters, headers, footers, or other parts of the document.

Description: The <section> tag is a new tag in HTML 5.

Note: All browsers support the <section> tag.

html section tag example

<!DOCTYPE html>
<html>
<body>

<section>
<h1>php.cn</h1>
<p>
PHP中文網(wǎng):獨家原創(chuàng),永久免費的在線php視頻教程,php技術(shù)學習陣地!
</p>
</section>


</body>
</html>

Run Instance?

Click the "Run Instance" button to view the online instance

<!DOCTYPE html>
<html>
<meta charset="utf-8">
<body>

<section>
<h1>西門大官人</h1>
<p>
西門大官人的視頻教程和直播課程推薦一看。
</p>
</section>


</body>
</html>

Run instance?

Click the "Run instance" button to view the online instance