<aside>

Sections

Represents content tangentially related to the main content, like sidebars, pull quotes, or related links.

Common Attributes

role

Example

<aside>
  <h3>Related Articles</h3>
  <ul><li>...</li></ul>
</aside>

About the <aside> Element

The <aside> HTML element belongs to the Sections category of HTML elements. Represents content tangentially related to the main content, like sidebars, pull quotes, or related links. Understanding when and how to use this element is essential for building well-structured, accessible, and SEO-friendly web pages.

The <aside> element requires both an opening <aside> and closing </aside> tag. Content placed between these tags becomes the element's children. This element is part of the current HTML Living Standard and is supported in all modern browsers including Chrome, Firefox, Safari, and Edge.

Proper use of semantic HTML elements like <aside> improves document structure, helps screen readers interpret content correctly, and provides signals to search engines about the purpose of different sections of your page. This leads to better accessibility scores, improved SEO rankings, and more maintainable code.

Related Elements