HTML <section> Tag


A section in a document, explaining what WWF is:

<section>
  <h1>WWF</h1>
  <p>The World Wide Fund for Nature (WWF) is....</p>
</section>

Definition and Usage

The <section> tag defines sections in a document, such as chapters, headers, footers, or any other sections of the document.


Default CSS Settings

Most browsers will display the <section> element with the following default values:

section {
  display: block;
}