References

Collection of references for web development.

HTML section tag

Description

The HTML <section> element represents a section, commonly used to define sections in a document that contain headings, paragraphs, images, etc.

Example

<section>
	<h1>Section Heading</h1>
	<p>Section content....</p>
</section>