INHow the Internet Works · Lesson 6 of 7
The Full Journey: URL to Pixels
Everything assembled: type example.com, press Enter, and watch every layer from this track fire in sequence — then the browser's own pipeline turns bytes into a rendered page.
The browser's rendering pipeline: parse HTML into the DOM tree; parse CSS into rules and combine into the render tree; layout computes every element's position and size; paint fills in pixels; composite layers the result on the GPU. JavaScript can interrupt everywhere — a <script> without defer blocks parsing while it downloads and runs, which is why script placement matters.
◆ Note
Caching is the web's real performance engine, at every level: browser cache (cache-control headers skip the request entirely), CDN edge caches (your request never crosses the ocean), DNS caches, connection reuse (keep-alive skips handshakes). A 'fast site' is mostly a site that arranged to skip steps.
Caching is the web's real performance engine, at every level: browser cache (cache-control headers skip the request entirely), CDN edge caches (your request never crosses the ocean), DNS caches, connection reuse (keep-alive skips handshakes). A 'fast site' is mostly a site that arranged to skip steps.