0Pricing
Web Performance Optimization & Lighthouse · Lesson

The Anatomy of a Page Load

Walk through what actually happens between typing a URL and seeing a fully interactive page, so you understand where performance is won or lost.

From URL to Pixels

A page load runs a fixed sequence: DNS, TCP/TLS handshake, request, response, parse, render, interactivity. Each step adds latency — and shows you where to optimize.

DNS Resolution

First the browser resolves a hostname to an IP via DNS. A cold lookup can cost 20-120ms; caching and dns-prefetch cut it down.

<link rel="dns-prefetch" href="https://cdn.example.com">

All lessons in this course

  1. What is Web Performance?
  2. Why Performance Matters
  3. Key Performance Metrics
  4. The Anatomy of a Page Load
← Back to Web Performance Optimization & Lighthouse