Render Flow - Unordered lists
[Read <ul>] -> [Create UL node] -> [Read <li>] -> [Create LI as child] -> [Add text to LI] -> [Close LI] -> [Repeat for each LI] -> [Close UL]
The browser reads the <ul> tag, creates a list container node, then reads each <li> item inside, creating child nodes with bullet points before rendering the list visually.