A website speed score blends three different measurements, and Google groups them as the Core Web Vitals: loading, responsiveness, and visual stability. A page is rated good when its Largest Contentful Paint is 2.5 seconds or less, its Interaction to Next Paint is 200 milliseconds or less, and its Cumulative Layout Shift is 0.1 or less (web.dev). The Best Answer Hub Website Speed Test runs a quick check from your own browser, measuring response time, time to first byte, compression, caching, and layout-shift risks, and it explains what each number means rather than handing you a bare grade.
This guide covers what the three Core Web Vitals measure, why time to first byte sits underneath them, why the same page scores differently on every run, how a one-off test differs from the real-user data Google ranks on, and where page speed actually fits into search. The tool sits in the Best Answer Hub Tools hub, is built and maintained by Shahbaz Ali Malik, and stays free because Best Answer Hub is funded by optional paid assessments rather than advertising.
What is the Best Answer Hub Website Speed Test?
The Best Answer Hub Website Speed Test is a free, browser-based tool that measures how quickly a website responds from where you are sitting. It uses your browser to fetch the page directly, then reports the time to first byte, the total load time, SSL configuration, compression, and caching headers, and it inspects the HTML for layout-shift risks like images without dimensions. You get a grade and a prioritized list of fixes, with no signup and nothing sent to a third-party server.
- 1Measures your real path. The request runs from your browser, so the result reflects your network, DNS, and the nearest CDN edge, not a distant test server.
- 2Explains the number. Response time, TTFB, compression, caching, and SSL are broken out, so you see which part is slow.
- 3Points to fixes. A prioritized checklist, with heavy images the usual first place to look.
What do the Core Web Vitals measure?
Each vital captures a different part of the experience, so one blended score can hide which one is failing. Largest Contentful Paint measures loading, the moment the biggest content element appears. Interaction to Next Paint measures responsiveness, the delay before the page reacts to taps and clicks across the whole visit. Cumulative Layout Shift measures visual stability, how much the layout jumps unexpectedly. Google sets a clear good threshold for each, judged at the 75th percentile of real page loads (web.dev).
Good thresholds: LCP 2.5s, INP 200ms, CLS 0.1. Segment widths are illustrative, not to scale. Source: web.dev, Core Web Vitals.
| Vital | Measures | Good | Poor |
|---|---|---|---|
| LCP | Loading | 2.5s or less | Over 4s |
| INP | Responsiveness | 200ms or less | Over 500ms |
| CLS | Visual stability | 0.1 or less | Over 0.25 |
Interaction to Next Paint replaced First Input Delay as a Core Web Vital on March 12, 2024 (web.dev). If a tool or article still lists FID, it is out of date. INP is stricter because it looks at every interaction across the visit, not just the first one.
A single lab performance score, like the one Google's Lighthouse produces, is a weighted blend of several metrics rather than one measurement, so the heaviest-weighted metric drives the grade. Total Blocking Time and Largest Contentful Paint carry the most weight, which is why a page can feel quick yet still score poorly if it blocks the main thread (Lighthouse scoring).
Current Lighthouse performance weightings. Total Blocking Time and LCP dominate the grade. Source: Chrome for Developers, Lighthouse performance scoring.
Where does TTFB fit in?
Time to first byte is the head start for everything else. It measures how long the server takes to send the first byte of the response, and it precedes the user-facing metrics like Largest Contentful Paint. Notably, TTFB is not itself a Core Web Vital, so hitting a specific TTFB number is not required, but a slow TTFB makes a good LCP much harder to reach (web.dev). This is the metric the Best Answer Hub Website Speed Test measures most directly, because it is the clearest early signal of a slow server or missing cache.
Why does the score change every time?
Because a speed test is a measurement of a moving target, not a fixed property. Google documents several sources of run-to-run variability in its own Lighthouse tool: the hardware the test runs on, other apps competing for CPU and memory, local network congestion, server load at that moment, and browser nondeterminism (Lighthouse variability docs). The practical takeaway is to run a test several times and look at the pattern, not a single number.
Google's Lighthouse throttles to a simulated slow-4G network and a 4x slower CPU by default when testing mobile (Lighthouse throttling docs). A page that scores well on a fast desktop can score much lower on that simulated phone, which is the profile that matters most since Google indexes the mobile version of your site.
Lab test or real users?
There are two kinds of speed data, and they answer different questions. A lab test loads the page once in a controlled environment with fixed network and device settings. Field data comes from real users visiting your site, collected in Chrome's Core Web Vitals reporting and summarized at the 75th percentile (web.dev). A lab run, including the Best Answer Hub Website Speed Test, is a fast diagnostic snapshot; the field data is what Google actually uses to judge your Core Web Vitals. The two often disagree, and that is expected.
| Lab test | Field data | |
|---|---|---|
| Source | One controlled run | Real visitors (Chrome) |
| Best for | Debugging, quick checks | How real users experience the site |
| Used by Google to rank | No | Yes, at the 75th percentile |
Is speed a Google ranking factor?
Yes, but it is not a trump card. Page experience, including Core Web Vitals, is one of many signals Google uses, and it helps most when several genuinely helpful pages are competing. Google is explicit that it will still surface the most relevant result even when the page experience is weak: "Google Search always seeks to show the most relevant content, even if the page experience is sub-par." So a fast site helps, but it does not outrank better content.
Google Search always seeks to show the most relevant content, even if the page experience is sub-par.Google Search Central, Understanding page experience.
How is Best Answer Hub different from other speed tools?
The difference is speed and access, not scope. Deep tools like PageSpeed Insights add real-user field data, which the Best Answer Hub Website Speed Test does not, and that is the right tool when you need Google's own numbers. Where the Best Answer Hub tool wins is a fast, unlimited, no-login check from your own connection: some rivals require an account or cap free tests per month. Use it for a quick pulse, then confirm Core Web Vitals in the field with PageSpeed Insights.
| Tool | Account to test | Free-test cap | Real-user field data |
|---|---|---|---|
| Best Answer Hub | No | None | No, lab snapshot |
| PageSpeed Insights | No | None (UI) | Yes |
| GTmetrix | Free account | Monthly cap | Yes (1-month) |
| WebPageTest | Free login | Monthly cap | Yes |
Try the free Website Speed Test
Measure response time, TTFB, compression, caching, and layout-shift risks from your own browser, with a grade and prioritized fixes. No signup, no test cap.
Open the Website Speed TestFrequently asked questions about website speed
Keep going
- →What Your SEO Score Really Means The companion piece on the on-page audit number and what it can and cannot tell you.
- →Why Image Compression Speeds Up Your Site The most common speed bottleneck, fixed in your browser.
- →Meta Tags, Done Right The title and description tags a speed-fast page still needs.
- →70+ Free Online Tools, No Signup The whole Best Answer Hub toolkit, all client-side.
Sources
- web.dev (Google), Web Vitals (LCP 2.5s, INP 200ms, CLS 0.1, at the 75th percentile).
- web.dev (Google), INP becomes a Core Web Vital (replaced FID on March 12, 2024).
- web.dev (Google), Time to First Byte (precedes LCP; not itself a Core Web Vital).
- web.dev (Google), Lab and field data (why a single run differs from real-user data).
- Chrome for Developers, Lighthouse variability and throttling (why scores change; mobile throttling).
- Google Search Central, Understanding page experience (relevance still wins over page experience).
More free tools: Tools hub, SEO Score Checker, Image Compressor, and all free tools.