Page Size Analyzer
Fetch any public page's HTML and see its byte size plus a count of the stylesheets, scripts, images, and iframes referenced in the markup.
How to use this tool
- 1
Paste the full URL of a public page (starting with https://) into the input field.
- 2
Click Analyze to have the server fetch that page's HTML.
- 3
Read the result cards: HTML shows the document size in bytes, and the other cards show how many stylesheet links, external scripts, images, and iframes appear in the markup.
- 4
Try a competitor or a previous version of your own page and compare the numbers.
What does the Page Size Analyzer actually measure?
Page weight is the total bytes a browser must download to render a page, and it directly shapes load time, especially on mobile and slow connections. This tool gives you a fast first look at one slice of that weight. It fetches only the page's HTML document and reports its size in bytes (the HTML card), then parses the markup with an HTML parser to count four kinds of referenced resources: <link rel="stylesheet"> tags, <script> tags that have a src attribute, <img> tags, and <iframe> tags. It is important to understand what those numbers are and are not. The byte size is the HTML only; the analyzer does not download the CSS, JavaScript, image, or font files those tags point to, so it cannot tell you their combined transfer size. The counts come from the raw HTML as delivered by the server, so resources injected later by JavaScript, lazy-loaded images, and inline (src-less) scripts are not counted. Pages larger than 5MB are rejected, and fetches time out after 20 seconds. Treat the result as a quick structural snapshot, not a full performance audit.
Common use cases
Quickly checking whether a landing page's HTML has bloated to an unusually large byte size before a launch.
Counting how many separate stylesheet and external script tags a page loads, to spot bundling or third-party-tag sprawl.
Comparing the resource counts of your page against a competitor's to see who ships a leaner front end.
Auditing how many img tags a content or product page renders when investigating layout shift or lazy-loading issues.
Spotting unexpected iframes (embeds, ad slots, trackers) injected into a page's markup.
Sanity-checking a CMS or build change by diffing the HTML size and tag counts before and after a deploy.
Frequently asked questions
Does this measure the full page weight including CSS, JS, and images?▼
Why is the script or image count lower than I expect?▼
Is my data uploaded anywhere?▼
Can I analyze a page behind a login or on my local network?▼
What does the HTML number actually represent?▼
Why did my analysis fail or time out?▼
What is a reasonable HTML size?▼
Related tools
DNS Lookup
Look up DNS records (A, AAAA, MX, TXT, NS) for any domain.
WHOIS Lookup
Get full WHOIS data for any domain.
SSL Certificate Checker
Check SSL certificate validity, issuer, and expiry.
HTTP Header Analyzer
Inspect HTTP response headers and security signals.
HTTP Status Code Checker
Check status code of any URL — single or bulk.
Redirect Chain Tracer
Follow every hop in a redirect chain.