Render Flow - What is HTML
[Read <!DOCTYPE html>] -> [Create Document] -> [Read <html>] -> [Create HTML element] -> [Read <head>] -> [Create HEAD element] -> [Read <body>] -> [Create BODY element] -> [Read child elements] -> [Create child nodes] -> [Render content]
The browser reads the HTML file from top to bottom, creating a tree of elements called the DOM. It then uses this tree to display the page visually.