
8 min read
What Happens When You Type a URL?
After you press Enter, the browser parses the address, checks cache, resolves DNS, opens HTTPS, requests HTML, and starts rendering.
Topic · 6 articles
A look inside the browser’s systems. Explore what really happens when you click, paste, upload, or scroll.
All articles — 6

8 min read
After you press Enter, the browser parses the address, checks cache, resolves DNS, opens HTTPS, requests HTML, and starts rendering.

8 min read
A page load turns a URL into bytes, then into DOM, CSSOM, layout, paint, and composited pixels. Scripts and styles decide what blocks the first view.

7 min read
Fetch builds a request, checks browser policy and cache, sends HTTP over the network, then exposes the response as headers and a body stream.

7 min read
When you upload a file, the browser exposes only the selected file, packages it for the request, and sends the bytes over HTTPS.

8 min read
A browser download starts as an HTTP response, then becomes a temporary file, a progress entry, and finally a saved file after checks finish.

7 min read
Pasting triggers a browser event that reads chosen clipboard formats, gives the page scoped access, and inserts or handles the content.