Render Flow - Section and article
Read <section>
→Create SECTION node
Read <article>
→Create ARTICLE node as child
Read <h2>
→Create H2 node as child
Add text 'Article Title'
Close H2
Read <p>
→Create P node as child
Add text 'This is the article content.'
Close P
Close ARTICLE
Close SECTION
The browser reads the HTML tags in order, building a tree of elements. It creates a section element, then inside it an article element with a heading and paragraph as children.