Render Flow - Strong vs b tag
Read <p>
→Create P node
Read <strong>
→Create STRONG node as child
Add text 'Important'
Close STRONG
Read <b>
→Create B node as child
Add text 'Note'
Close B
Close P
The browser reads the paragraph, creates nodes for <strong> and <b> tags, and adds their text as children, building the DOM tree.