Performance glossary

Plain-English definitions of the web-performance metrics and PageSpeed terms we use — LCP, CLS, INP and the rest.

Need the numbers themselves? How to run a Lighthouse speed test — three ways to do it, and what to make of the fact that the score moves between runs.

Core Web Vitals 4

Lab metrics 5

Tools & concepts 13

Concept

Conversion rate

The share of visitors who take the action you want — buy, sign up, submit a form. It's the business metric page speed most directly moves, which is why a faster site is worth measuring in revenue, not just milliseconds.

Concept

Critical CSS

The small slice of CSS needed to render the first screen, inlined into the HTML so the page can paint without waiting for a stylesheet to download.

Concept

fetchpriority

The HTML attribute that tells the browser which downloads matter most — the one-line fix for a hero image queued at the same priority as a footer icon.

Concept

Field data

Measurements collected from real visits rather than one simulated load — the distinction that decides which of the two conflicting numbers on your PageSpeed report is the verdict.

Concept

font-display

The CSS descriptor that decides what a visitor reads while a web font is still downloading: nothing, a fallback typeface, or the fallback kept permanently.

Concept

gzip and Brotli — gzip, Brotli and Zstandard text compression

The compression algorithms a server applies to HTML, CSS and JavaScript before sending them, declared in the Content-Encoding header. Brotli is usually smallest, gzip is universal, Zstandard is the newest of the three.

Concept

Lazy loading

Deferring the load of off-screen images, iframes and scripts until they're about to be needed, so the browser spends its first moments only on what the visitor can actually see.

Tool

Lighthouse

Google's open-source engine that runs a page in a controlled browser and produces the PageSpeed score and lab metrics.

Concept

PageSpeed score — Lighthouse Performance score

The 0–100 number PageSpeed Insights shows — a weighted blend of five lab metrics, not a single measurement.

Concept

Preload scanner

The part of the browser that races ahead through the raw HTML to start downloads early — and the reason a hero image it cannot see arrives late.

Concept

Render-blocking resources

CSS and JavaScript in the <head> that the browser must fetch and process before it can paint anything — the most common cause of a slow first paint.

Concept

Resource hints

The link tags that ask the browser to do network work early: dns-prefetch, preconnect, prefetch. Most audited sites ship some and still miss a connection to an origin they load from.

Concept

Reverse proxy

A server that sits in front of your website, receives each visitor request, and can transform the response on the way out — how WebSpeed optimizes a page without touching your site.