html section tag
Translation results:
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 tagsyntax
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 tagexample
<!DOCTYPE html> <html> <body> <section> <h1>php.cn</h1> <p> PHP中文网:独家原创,永久免费的在线php视频教程,php技术学习阵地! </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