Page Speed Checker

Opens Google PageSpeed Insights in a new tab — the industry-standard tool for measuring Core Web Vitals and getting actionable improvement suggestions.

Core Web Vitals Reference

LCPLargest Contentful Paint
Good: ≤ 2.5sNeeds work: 2.5s – 4.0sPoor: > 4.0s

Measures loading performance. Marks the point when the largest text or image element is rendered.

INPInteraction to Next Paint
Good: ≤ 200msNeeds work: 200ms – 500msPoor: > 500ms

Measures responsiveness. Reports the latency of all click, tap, and keyboard interactions.

CLSCumulative Layout Shift
Good: ≤ 0.1Needs work: 0.1 – 0.25Poor: > 0.25

Measures visual stability. Quantifies unexpected layout shifts that occur during the page's lifecycle.

FCPFirst Contentful Paint
Good: ≤ 1.8sNeeds work: 1.8s – 3.0sPoor: > 3.0s

Measures when the browser renders the first piece of DOM content after a user navigates to the page.

TTFBTime to First Byte
Good: ≤ 800msNeeds work: 800ms – 1.8sPoor: > 1.8s

Measures the time it takes the server to respond to a request with the first byte of a response.

Quick Optimization Tips

Images

  • Use modern formats (WebP, AVIF) — save 25–50% over JPEG/PNG
  • Set explicit width/height attributes to avoid layout shifts
  • Lazy-load below-the-fold images with loading="lazy"

JavaScript

  • Remove unused JavaScript — use code splitting and tree-shaking
  • Defer non-critical scripts with defer or async attributes
  • Minify and compress JS bundles

CSS

  • Inline critical CSS and defer the rest
  • Remove unused CSS rules
  • Avoid render-blocking stylesheets in <head>

Server

  • Enable HTTP/2 or HTTP/3
  • Use a CDN for static assets
  • Add proper Cache-Control headers

Tool Categories