Skip to content
RU

Website Speed Test — Core Web Vitals

Measure your website's loading speed and get Core Web Vitals scores. We analyze LCP, CLS, TTFB, FCP and provide actionable optimization tips.

Check your site's speed →

What we measure

  • LCP — Largest Contentful Paint
  • CLS — Cumulative Layout Shift
  • TTFB — Time to First Byte
  • FCP — First Contentful Paint

Why speed matters

Google uses Core Web Vitals as a ranking factor. A slow site loses search rankings and conversions.

Understanding Core Web Vitals

Core Web Vitals are a set of metrics that Google uses to evaluate the user experience of a website, focusing specifically on loading performance, interactivity, and visual stability. These metrics include:

  • Largest Contentful Paint (LCP): Measures loading performance. A good LCP score is 2.5 seconds or faster.
  • First Input Delay (FID): Measures interactivity. A good FID score is 100 milliseconds or less.
  • Cumulative Layout Shift (CLS): Measures visual stability. A good CLS score is 0.1 or less.

By monitoring these metrics, you can identify areas of improvement that directly affect user engagement and retention. Improving your Core Web Vitals not only enhances user experience but also positively impacts your SEO rankings, as Google considers these metrics in its algorithm.

Optimizing Your Website for Speed

Optimizing your website’s speed can significantly improve your Core Web Vitals scores. Here are some effective strategies to implement:

  • Image Optimization: Use formats like WebP for better compression. Consider lazy loading images to improve LCP. Example configuration in HTML:
<img src="image.webp" loading="lazy" alt="Description">
  • Minimize HTTP Requests: Reduce the number of elements on your page to decrease load times. Combine CSS and JavaScript files where possible.
  • Use a Content Delivery Network (CDN): CDNs cache your content at various locations worldwide, reducing latency. Configure your CDN to serve static assets efficiently.

Implementing these optimization techniques not only enhances your website's speed but also contributes to improved user experience and retention.

Testing and Monitoring Website Speed

Regular testing and monitoring of your website's speed are crucial for maintaining optimal Core Web Vitals. Here are some tools and methods to effectively check your website's performance:

  • Google PageSpeed Insights: This tool provides detailed reports on your website's performance and suggests improvements. Simply enter your URL to get started.
  • GTmetrix: Offers a comprehensive breakdown of your website's speed, including waterfall charts that help identify bottlenecks.
  • WebPageTest: Allows you to run tests from different locations and browsers, providing insights into how your site performs under various conditions.

To automate monitoring, consider using command-line tools like curl or lighthouse. For example, you can run:

lighthouse https://yourwebsite.com --output=json --output-path=./report.json

This command generates a performance report in JSON format, allowing you to integrate it into your development workflow. Regularly monitoring these metrics will help you stay ahead of potential issues and maintain an excellent user experience.

PerformanceOverall speed score 0-100
Core Web VitalsLCP, FID, CLS — Google metrics
Page SizeSize of HTML, CSS, JS, images
RecommendationsSpecific tips for improvement

Why teams trust us

Lighthouse
analysis engine
899
checks in 30 days
4
Lighthouse categories
686
distinct targets

How it works

1

Enter page URL

2

Lighthouse analyzes

3

Get CWV scores & tips

Why Does Site Speed Matter?

Page load speed directly impacts conversion, SEO rankings, and user satisfaction. Google uses Core Web Vitals as a ranking factor. Every extra second of load time cancost up to 7% in conversions.

Lighthouse Analysis

Google Lighthouse-based analysis: Performance, Accessibility, Best Practices, SEO.

Core Web Vitals

LCP (rendering), FID (interactivity), CLS (visual stability) — key Google metrics.

Resource Analysis

Breakdown by type: HTML, CSS, JavaScript, images, fonts. Size, request count, blocking resources.

Actionable Advice

Specific recommendations with savings estimates: image compression, caching, minification, etc.

Mobile vs Desktop

Mobile
  • Tested on Moto G Power emulation (slow CPU)
  • Network: 4G (1.6 Mbps, 150ms RTT)
  • Stricter speed scoring
  • Google indexes mobile-first
  • Priority for SEO optimization
Desktop
  • High CPU performance
  • Fast connection without throttling
  • Scores typically 20-40 points higher
  • Important for B2B and corporate sites
  • Use for baseline comparisons

Who uses this

SEO

Core Web Vitals for rankings

Developers

performance optimization

Marketers

speed = conversions

DevOps

performance regression

Common Mistakes

Unoptimized imagesImages can be up to 70% of page weight. Use WebP/AVIF and lazy loading.
Render-blocking JS in &lt;head&gt;Scripts without async/defer block rendering. Move to end or add attribute.
No static asset cachingWithout Cache-Control, the browser reloads CSS/JS on every visit.
Too many HTTP requestsEach request adds latency. Bundle files, use sprites, or inline critical CSS.
Missing compression (gzip/brotli)Compression reduces text resource size by 60-80%. Enable brotli on the server.

Best Practices

Optimize imagesWebP for photos, SVG for icons. loading="lazy" for images below the fold.
Enable brotli compressionBrotli is 15-20% more efficient than gzip. Configure in nginx: brotli on;
Set up cachingStatic: Cache-Control: max-age=31536000, immutable. HTML: max-age=0, s-maxage=60.
Preload critical resources<link rel="preload"> for fonts and CSS. Reduces LCP by 200-500ms.
Test regularlySpeed degrades over time. Check after each deploy and monthly.

Get more with a free account

Speed check history, competitor comparison and PageSpeed monitoring.

Sign up free

Learn more

Frequently Asked Questions

How to improve LCP?

Optimize images (WebP, lazy loading), use a CDN, minimize CSS/JS, enable server caching.

Is the speed test free?

Yes, completely free.

Try the live tool that powered this guide

Free plan — 10 monitors, checks every 5 min, no card required. Upgrade for 1-minute interval and multi-region monitoring.