section
UK[ˈsekʃn] US[ˈsɛkʃən]
n.Part; section; component; department
vi. Cut; Cut off; make slices of (animal or plant tissue); formally send (mentally ill patients) to a mental hospital
vt. Cut... into slices (or segments); make slices of...; make... into sections; make Sectional view of…
html5<section> tag syntax
Function: The <section> tag defines the section (section, section) in the document. Such as chapters, headers, footers, or other parts of the document.
Parameters:
Attribute | Value | Description |
cite | url | The URL of the section, if the section is taken from the web. |
html5<section> tag example
<!DOCTYPE html> <html> <body> <section> <h1>WWF</h1> <p> The World Wide Fund for Nature (WWF) is an international organization working on issues regarding the conservation, research and restoration of the environment, formerly named the World Wildlife Fund. WWF was founded in 1961. </p> </section> <section> <h1>WWF's Panda symbol</h1> <p> The Panda has become the symbol of WWF. The well-known panda logo of WWF originated from a panda named Chi Chi that was transferred from the Beijing Zoo to the London Zoo in the same year of the establishment of WWF. </p> </section> </body> </html>
Click the "Run instance" button to view the online instance