PERFORMANCE · FREE

How big is your
web page?

A heavy page loads slowly, ranks worse and loses visitors before they see the content. Here's how to measure the weight — and find the elements that add most of it.

Updated August 2026 · 5 min read

Measure the weight in 30 seconds

  1. Network tab: press F12, select Network, reload, read the total at the bottom. That number is the full page including every resource.
  2. Sort by size: click the Size column. Your top three rows are almost always the problem.
  3. Look for uncompressed images: large PNGs where JPEG or WebP would be 5–10× smaller.
  4. Count scripts: each third-party widget (chat, analytics, heatmaps) costs both bytes and extra requests.
$ curl -s https://yoursite.com | wc -c        # HTML alone
$ curl -sI https://yoursite.com/img.jpg | grep -i content-length

What the weight really costs

Every extra megabyte delays first content — and Google measures this directly through Core Web Vitals (LCP). A page loading in one second typically converts two to three times better than one taking five. Weight also hits mobile users on limited data plans hardest, precisely the visitors who most often buy locally.

ElementTypical share of weight
Images and video60–80%
JavaScript10–20%
Fonts2–8%
CSS + HTML2–5%
Get your page's numbers →

Keep reading

Also see: speed checks without Lighthouse, metadata audits and finding every page on a site.

Frequently asked questions

What is a good page size?

Under 500 KB is a great target for most pages; up to 2 MB is acceptable for image-heavy ones. The web average sits around 2–3 MB, so coming in below that already puts you ahead of most competitors.

How do I check a page's size without a tool?

Open developer tools (F12), switch to the Network tab and reload. The bottom row shows total transferred size. Note that compressed transfer is usually smaller than uncompressed size — both numbers matter.

Does page size actually make my site slower?

Yes, directly: more bytes mean longer download times, especially on mobile connections. But render-blocking JavaScript, request count and server response time often affect perceived speed just as much as raw size.

What typically weighs the most on a page?

Images and video (often 60–80% of weight), then JavaScript bundles, fonts and third-party scripts like chat widgets and analytics. Start by compressing images — that's almost always the biggest win.

Try the page analysis now →

Dansk version af denne guide

Related: Speed check without Lighthouse · Technical SEO audit · Find all pages on a site