How a Browser Works: A Beginner-Friendly Guide to Browser Internals
What a browser actually is (beyond “it opens websites”)

1. The High-Level View: A Team of Specialists
Think of the browser not as a single program, but as a collection of components working together like a professional kitchen.
The User Interface (The "Dining Room")
Everything you see that isn't the website itself. This includes the address bar, back/forward buttons, bookmarks, and tabs. It’s the part you interact with to tell the browser what to do.
The Browser Engine (The "Manager")
The bridge between the UI and the rendering engine. When you click "Back," the UI tells the Browser Engine, which then tells the internal parts to load the previous page.
Rendering Engine vs. Browser Engine
While they sound similar, they have distinct jobs:
Browser Engine: Handles the high-level stuff (history, settings, tab management).
Rendering Engine: The "Chef." Its only job is to take code (HTML/CSS) and turn it into pixels.
- Examples: Blink (Chrome/Edge), Gecko (Firefox), and WebKit (Safari).
2. Networking: Fetching the Ingredients
Before the browser can show you anything, it has to go get the files. It sends a request across the internet to a server.
The server sends back HTML (the structure), CSS (the look), and JavaScript (the behavior).
The browser doesn't wait for everything; it starts working the moment the first "chunk" of HTML arrives.
3. Parsing: Breaking Down the Code
Parsing is just a fancy word for "making sense of a string of text."
Analogy: If I give you the math problem
(5 + 2) * 10, your brain "parses" it by identifying the numbers, the operators, and the parentheses to understand the order of operations.
The browser does this with your code to create two "instruction manuals":

The DOM (The HTML Tree)
The browser reads your HTML and builds the Document Object Model (DOM). Think of it as a tree structure. The <html> tag is the root, the <body> is a branch, and every <h1> or <p> is a leaf.
The CSSOM (The Style Guide)
While building the DOM, the browser finds CSS. It parses this into the CSS Object Model (CSSOM). This maps styles (colors, fonts, sizes) to the elements in your tree.

4. The Construction Site: From Code to Pixels
Now that the browser has the structure (DOM) and the styles (CSSOM), it combines them into a Render Tree. This tree only contains things that will actually appear on the screen (it ignores things like <head> or elements marked display: none).
Layout (Reflow)
The browser calculates exactly where every element goes. It figures out: "If this box is 50% wide and the screen is 1000px, this box needs to be 500px."
Painting & Display
Finally, the browser "paints" the pixels. It fills in the colors, shadows, and images. These layers are then flattened and shown on your screen.

The Takeaway
You don't need to memorize every step! Just remember the flow:
Request: Get the files.
Parse: Build the DOM (Tree) and CSSOM (Styles).
Calculate: Figure out where things go (Layout).
Paint: Draw the pixels.