HTML5 Tag: ASIDE

Defination

Represents a section of a page consisting of content that is tangentially related to the content around the aside element, and which could be considered separate from that content. Such sections are often represented as sidebars in printed typography.

Example
<aside>
    <h2>
        Releated Link
    </h2>
    <ul>
        <li><a href="link1.html"> Releated post link 1 </a></li>
        <li><a href="link2.html"> Releated post link 2 </a></li>
        <li><a href="link3.html"> Releated post link 3 </a></li>
    </ul>
</aside>

Copyright @ 2024 DevelopNew. All Rights Reserved