
- HTML Tutorial
- HTML - Home
- HTML - Roadmap
- HTML - Introduction
- HTML - History & Evolution
- HTML - Editors
- HTML - Basic Tags
- HTML - Elements
- HTML - Attributes
- HTML - Headings
- HTML - Paragraphs
- HTML - Fonts
- HTML - Blocks
- HTML - Style Sheet
- HTML - Formatting
- HTML - Quotations
- HTML - Comments
- HTML - Colors
- HTML - Images
- HTML - Image Map
- HTML - Frames
- HTML - Iframes
- HTML - Phrase Elements
- HTML - Code Elements
- HTML - Meta Tags
- HTML - Classes
- HTML - IDs
- HTML - Backgrounds
- HTML Tables
- HTML - Tables
- HTML - Table Headers & Captions
- HTML - Table Styling
- HTML - Table Colgroup
- HTML - Nested Tables
- HTML Lists
- HTML - Lists
- HTML - Unordered Lists
- HTML - Ordered Lists
- HTML - Definition Lists
- HTML Links
- HTML - Text Links
- HTML - Image Links
- HTML - Email Links
- HTML Color Names & Values
- HTML - Color Names
- HTML - RGB & RGBA Colors
- HTML - HEX Colors
- HTML - HSL & HSLA Colors
- HTML - HSL Color Picker
- HTML Forms
- HTML - Forms
- HTML - Form Attributes
- HTML - Form Control
- HTML - Input Attributes
- HTML Media
- HTML - Video Element
- HTML - Audio Element
- HTML - Embed Multimedia
- HTML Header
- HTML - Head Element
- HTML - Adding Favicon
- HTML - Javascript
- HTML Layouts
- HTML - Layouts
- HTML - Layout Elements
- HTML - Layout using CSS
- HTML - Responsiveness
- HTML - Symbols
- HTML - Emojis
- HTML - Style Guide
- HTML Graphics
- HTML - SVG
- HTML - Canvas
- HTML APIs
- HTML - Geolocation API
- HTML - Drag & Drop API
- HTML - Web Workers API
- HTML - WebSocket
- HTML - Web Storage
- HTML - Server Sent Events
- HTML Miscellaneous
- HTML - Document Object Model (DOM)
- HTML - MathML
- HTML - Microdata
- HTML - IndexedDB
- HTML - Web Messaging
- HTML - Web CORS
- HTML - Web RTC
- HTML Demo
- HTML - Audio Player
- HTML - Video Player
- HTML - Web slide Desk
- HTML Tools
- HTML - Velocity Draw
- HTML - QR Code
- HTML - Modernizer
- HTML - Validation
- HTML - Color Picker
- HTML References
- HTML - Cheat Sheet
- HTML - Tags Reference
- HTML - Attributes Reference
- HTML - Events Reference
- HTML - Fonts Reference
- HTML - ASCII Codes
- ASCII Table Lookup
- HTML - Color Names
- HTML - Character Entities
- MIME Media Types
- HTML - URL Encoding
- Language ISO Codes
- HTML - Character Encodings
- HTML - Deprecated Tags
- HTML Resources
- HTML - Quick Guide
- HTML - Useful Resources
- HTML - Color Code Builder
- HTML - Online Editor
HTML - <section> Tag
Introduction to <section> Tag
The HTML <section> tag is used to represent an independent, self-contained piece of content within an HTML document. This tag was included in HTML5.
The HTML section tag is similar to the <article> tag. A single HTML document can contain multiple section elements. When an HTML <section> element is nested, the inner element represents a section related to the outer element.
For example, comments on social media posts can be a section element nested within the section representing the social media post. It is mostly used for forum posts, magazine or newspaper sections, blog entries, product cards, etc.
Syntax
Following is the syntax of <section> tag −
<section> ..... </section>
Attribute
The HTML section tag supports both Global and Event attributes.
Example: Creating Self-Contained Content
In this example, we created two self-contained sections using the <section> tag. Each section is independent of the other and the parent element. One section is for HTML tags, and the other is for attributes, each with its own headings and paragraphs.
<!DOCTYPE html> <html lang="en"> <head> <title>HTML section tag</title> </head> <body> <!-- Creating section Element --> <h2>HTML 'section' Element</h2> <section> <h3>HTML Tags</h3> <p> HTML tags are similar to keywords, which specify how a web browser will format and display content. A web browser can differentiate between simple content and HTML content with the use of tags. </p> </section> <section> <h3>HTML Attributes</h3> <p> An attribute is used to define the characteristics of an HTML element and is placed inside the element's opening tag. All attributes are made up of two parts: a name and a value </p> </section> </body> </html>
Example: Styling section Element
Consider this example, where we use the <section> tag and apply CSS properties. The HTML code styles two sections with an aquarium background, rounded corners containing paragraphs.
<!DOCTYPE html> <html lang="en"> <head> <title>HTML section tag</title> <style> section { width: 300px; height: 150px; background-color: aquamarine; border-radius: 10px; } section h3, p { margin: 10px 10px; } </style> </head> <body> <!--create a section element--> <h2>HTML 'section' Element</h2> <section> <h3>HTML Tags</h3> <p> HTML tags are similar to keywords, which specify how a web browser will format and display content. A web browser can differentiate between simple content and HTML content with the use of tags. </p> </section> <section> <h3>HTML Attributes</h3> <p> An attribute is used to define the characteristics of an HTML element and is placed inside the element's opening tag. All attributes are made up of two parts: a name and a value </p> </section> </body> </html>
Example: Nested section Elements
Let's explore another scenario, where we create a nested section element. This HTML code styles nested sections with margins, rounded corners, padding, and borders, each containing headings and paragraphs.
<!DOCTYPE html> <html lang="en"> <head> <title>HTML section Tag</title> <style> section { margin: 5px; border-radius: 10px; padding: 10px; border: 2px solid black; } p { margin: 10px; } </style> </head> <body> <!--create a section element--> <h2>HTML 'section' Element</h2> <section> <h3>HTML Elements</h3> <p> HTML Elements are building block of a web page. It is used to create component for webpages. </p> <section> <h3>HTML Tags</h3> <p> HTML tags are similar to keywords, which specify how a web browser will format and display content. A web browser can differentiate between simple content and HTML content with the use of tags. </p> </section> <section> <h3>HTML Attributes</h3> <p> An attribute is used to define the characteristics of an HTML element and is placed inside the element's opening tag. All attributes are made up of two parts: a name and a value </p> </section> </section> </body> </html>
Example: Image Implementation
In the following example, we create nested <section> elements to represent the self-contained content of the blog post and its comments. The HTML code includes a blog post with an image and a nested comments section containing two comments.
<!DOCTYPE html> <html lang="en"> <head> <title>HTML section tag</title> <style> section img { width: 200px; } </style> </head> <body> <!--create a section element--> <section> <h2>Blog post</h2> <img src="/images/logo.png?v3" alt="Tutorialspoint logo"> <section> <h2>Comments</h2> <p>Dman good...</p> <p>fabulous...!</p> </section> </section> </body> </html>
Supported Browsers
Tag | ![]() |
![]() |
![]() |
![]() |
![]() |
---|---|---|---|---|---|
section | Yes 6.0 | Yes 9.0 | Yes 4.0 | Yes 5.0 | Yes 11.1 |