Core Web Vitals Checker
Core Web Vitals are Google's official user-experience metrics — and a confirmed search ranking factor. Check yours instantly with the same engine Google uses.
The three Core Web Vitals
Google's Core Web Vitals are three metrics designed to capture real user experience:
LCP — Largest Contentful Paint
LCP measures how long it takes for the largest element above the fold (usually a hero image, headline, or video) to render. It tells you how quickly your page feels loaded to a visitor.
| Rating | Threshold |
|---|---|
| Good | ≤ 2.5s |
| Needs Improvement | ≤ 4.0s |
| Poor | > 4.0s |
CLS — Cumulative Layout Shift
CLS measures visual stability. Every time content on your page jumps around as it loads (because an ad loaded, or a font swapped in, or an image had no dimensions), your CLS score goes up.
| Rating | Threshold |
|---|---|
| Good | ≤ 0.1 |
| Needs Improvement | ≤ 0.25 |
| Poor | > 0.25 |
INP — Interaction to Next Paint
INP replaced FID in March 2024 as a Core Web Vital. It measures the latency between a user interaction (click, tap, key press) and the next visual update.
| Rating | Threshold |
|---|---|
| Good | ≤ 200ms |
| Needs Improvement | ≤ 500ms |
| Poor | > 500ms |
How to check yours
Paste your URL into the form at the bottom. We'll run a Lighthouse audit on both mobile and desktop and grade each Core Web Vital using Google's exact thresholds. Green means good, amber means needs improvement, red means fix this.
How to fix poor Core Web Vitals
To improve LCP:
- Compress and properly size your hero image
- Use
<link rel="preload">on your largest above-the-fold asset - Move to a faster host or add a CDN
- Inline critical CSS instead of blocking on an external stylesheet
To improve CLS:
- Always set
widthandheightattributes on<img>and<video>elements - Reserve space for ads and embeds before they load
- Use
font-display: optionalor preload your custom fonts
To improve INP:
- Break up long JavaScript tasks (anything over 50ms)
- Defer non-essential third-party scripts
- Use
requestIdleCallbackfor non-critical work - Avoid heavy work in event handlers — let the browser paint first
Frequently Asked Questions
What are Core Web Vitals?+
Core Web Vitals are three real-user metrics — Largest Contentful Paint (LCP), Cumulative Layout Shift (CLS), and Interaction to Next Paint (INP) — that Google uses to measure page experience and ranking signals.
What are good Core Web Vitals thresholds?+
LCP should be 2.5s or less, CLS should be 0.1 or less, and INP should be 200ms or less. Anything between Good and the next tier is 'Needs Improvement', and beyond that is 'Poor'.
Do Core Web Vitals affect SEO?+
Yes. Google confirmed Core Web Vitals as a ranking factor in 2021 as part of the Page Experience update. Sites that pass tend to rank above similar pages that don't.
Is INP the same as FID?+
No. INP (Interaction to Next Paint) replaced FID (First Input Delay) as a Core Web Vital in March 2024. INP measures the latency of ALL interactions on the page, not just the first one.
See how your site really performs
Run a full website health check on mobile and desktop in 30 seconds — no signup needed.
Continue reading
Website Speed Test
Run a free website speed test on any URL. Get mobile and desktop Lighthouse scores, Core Web Vitals, and a plain-English breakdown in 30 seconds.
Read moreHow to Improve Website Speed
Step-by-step guide to making your website faster. Twelve high-impact fixes ranked by effort vs reward, with real numbers and code examples — no fluff.
Read moreSEO Score Checker
Check your website's SEO score for free using Google's Lighthouse engine. Get instant feedback on titles, meta descriptions, structured data, mobile-friendliness and more.
Read more