Glossary · SEO

First Contentful Paint

furst kun-TENT-ful payntnoun

First Contentful Paint measures the time from page load until the first piece of content appears on screen.

Part of speech
noun
Pronunciation
furst kun-TENT-ful paynt
Origin
From the browser 'painting' pixels to the screen. First Contentful Paint marks when the first piece of real content appears, defined by Google as a performance metric.

What is First Contentful Paint?

First Contentful Paint measures the time from when a page starts loading until the first piece of real content appears on the screen. That first content might be a line of text, an image, a piece of an SVG graphic, or a canvas element; the key is that it is genuine page content rather than a blank background. First Contentful Paint marks the moment the visitor gets the earliest visual confirmation that the page is actually loading and not frozen or broken. It is one of the standard metrics used to judge how quickly a page begins to feel alive.

The mechanics measure a specific milestone in the loading process. When a browser requests a page, several things happen before anything is drawn: the server responds, the HTML arrives, and the browser processes the styles and scripts needed to render. First Contentful Paint is the timestamp at which the browser paints the first bit of content to the screen. It comes after an even earlier signal, the time to first byte, which marks when the server's response begins arriving, and it precedes later milestones that measure when the main content is fully visible. Because render-blocking stylesheets and scripts can delay that first paint, First Contentful Paint is heavily influenced by how efficiently a page delivers and processes its critical resources.

The term comes from the browser "painting" pixels onto the screen. As performance measurement matured, engineers wanted a metric that captured not just when data arrived but when a human could actually see something, and Google defined First Contentful Paint as part of a family of user-centric performance metrics reported through its performance tools. It became a common reference point for diagnosing slow starts, because a poor score points clearly at problems in the earliest stage of loading.

First Contentful Paint matters because first impressions form fast. A visitor who sees content appear quickly gains confidence that the site works and is worth waiting for, while a long blank screen invites doubt and abandonment, particularly on mobile devices and slower connections. Although it is a diagnostic metric rather than one of the three headline Core Web Vitals, it is closely watched because it isolates the initial rendering phase and helps identify why a page feels sluggish out of the gate. Improving it tends to improve the whole perception of speed.

The common mistakes that hurt First Contentful Paint involve delaying that first paint unnecessarily. Loading large render-blocking stylesheets and scripts in the head, relying on a slow server that lengthens the time to first byte, and depending on client-side rendering that shows nothing until a large bundle of JavaScript downloads and executes all push the first paint later. The remedies include minimizing and inlining critical CSS, deferring non-essential scripts, improving server response time, and using efficient hosting and caching. First Contentful Paint sits within a sequence of loading metrics: it follows time to first byte and precedes Largest Contentful Paint, which measures when the main content has loaded. Read together, these metrics tell a story about how a page loads from the first byte to a fully visible screen, and First Contentful Paint captures the crucial early moment when the waiting first ends.

Why it matters

First Contentful Paint is the moment users learn the page is alive. A quick FCP reduces bounce and sets the tone for a fast, trustworthy experience.