Render Flow - Aside element
Read <html>
→Create HTML root node
Read <body>
→Create BODY node
Read <main>
→Create MAIN node as child of BODY
Read <p>
→Create P node as child of MAIN
Close <p>
Close <main>
Read <aside>
→Create ASIDE node as sibling to MAIN
Read <p>
→Create P node as child of ASIDE
Close <p>
Close <aside>
Close <body>
Close <html>
The browser reads the HTML top-down, building a tree of elements. The <aside> element is created as a sibling to main content, holding related but separate information.