HTML - <aside> Tag


Description

The HTML <aside> tag is used to specify a section of a page aside from the related section. This tag can be used for glossary definitions, author biography, author profile etc.

Example

<!DOCTYPE html>
<html>

   <head>
      <title>HTML aside Tag</title>
   </head>

   <body>
      <aside>
         <h3>Java History</h3> 
         <p>Java is a programming language developed by James Gosling in 1994.</p>
      </aside>
   </body>

</html>

This will produce the following result −

Global Attributes

This tag supports all the global attributes described in HTML Attribute Reference

Event Attributes

This tag supports all the event attributes described in HTML Events Reference

Browser Support

Chrome Firefox IE Opera Safari Android
Yes Yes Yes Yes Yes Yes
html_tags_reference.htm
Advertisements