Website Carbon Footprint Benchmarks by Industry: Where Does Your Site Stand in 2026?

Updated March 2026 · 10 min read

The global median website carbon footprint is 0.64g CO2 per page view in 2026. Media sites are the worst offenders at 1.42g, while optimized SaaS platforms average just 0.31g. E-commerce falls in the middle at 0.87g. These benchmarks are based on analysis of over 50,000 websites using the Sustainable Web Design Model v4.

Every website consumes energy. Servers run around the clock, data travels through networks spanning continents, and your visitor's device burns power rendering each page. Multiply that by thousands or millions of page views, and you have a measurable environmental impact.

But here is what most sustainability reports miss: not all websites are created equal. A text-heavy documentation site and a video-laden news portal have wildly different carbon profiles, even at the same traffic volume. The industry you operate in largely determines your baseline, and understanding that baseline is the first step toward meaningful reduction.

I have been analyzing website carbon data for the past three years, and the patterns are remarkably consistent across sectors. What follows are the benchmarks your team actually needs.

How We Measured These Benchmarks

These benchmarks draw from scans of over 50,000 websites conducted between January and March 2026 using the Carbon Badge testing tool, which implements the Sustainable Web Design Model (SWD) version 4.

The methodology accounts for three primary factors:

Each site was tested on its homepage plus two randomly selected interior pages. The figures below represent the median emissions per page view in grams of CO2 equivalent (g CO2e).

2026 Benchmarks: Carbon Emissions by Industry

IndustryMedian (g CO2/page view)Top 10%Bottom 10%Median page weight
Media & News1.420.683.105.8 MB
E-commerce0.870.392.143.5 MB
Travel & Hospitality0.810.351.953.2 MB
Real Estate0.780.321.883.1 MB
Financial Services0.720.281.622.9 MB
Healthcare0.690.271.542.7 MB
Government0.650.241.482.6 MB
Manufacturing0.580.221.312.3 MB
Education0.530.211.182.1 MB
B2B Services0.480.191.051.9 MB
Non-profit0.440.180.961.7 MB
SaaS / Tech Tools0.310.120.721.2 MB

Why Media Sites Are the Biggest Polluters

At 1.42g per page view, media and news websites emit more than four times the carbon of an average SaaS product page. That gap is not surprising when you break down what is actually loading on a typical news article page:

The irony is thick: outlets that publish daily articles about climate change often run some of the most carbon-intensive websites on the internet. The Guardian, to their credit, published their own analysis of this problem back in 2023 and has since reduced their page weight by roughly 40%.

E-Commerce: Where Money Meets Carbon

E-commerce sits at 0.87g per page view, and the driver is straightforward: product images. A typical product page serves 8-15 images (multiple angles, zoom views, lifestyle shots), and product listing pages display 20-60 thumbnail images that are often not properly lazy-loaded.

The carbon cost compounds with traffic. Consider a mid-size online store with 500,000 monthly page views:

ScenarioCO2 per page viewMonthly emissionsAnnual emissions
Current average (unoptimized)0.87g435 kg5.2 tonnes
After image optimization0.52g260 kg3.1 tonnes
After full optimization + green hosting0.28g140 kg1.7 tonnes

That 3.5-tonne reduction from full optimization is equivalent to taking 1.5 cars off the road for a year. For a larger retailer with 10 million monthly page views, the impact scales to approximately 70 tonnes of avoided CO2 annually.

Quick wins for e-commerce sites

Financial Services: Surprisingly Heavy

Banks and insurance companies land at 0.72g, higher than you might expect for text-heavy sites. The culprit is not images — it is JavaScript. Financial services websites run extensive client-side applications for account dashboards, loan calculators, and compliance-mandated disclosures. The median financial services homepage loads 1.4 MB of JavaScript alone.

Add fraud detection scripts, analytics packages, and chat widgets, and you get pages that may look simple but carry a heavy computational load on the visitor's device. That client-side processing translates directly into battery drain and energy consumption.

Government Websites: Room for Improvement

Government sites average 0.65g per page view, which seems middling until you consider the traffic volumes involved. A national tax authority or healthcare portal serving millions of visitors daily accumulates massive aggregate emissions from even small per-page inefficiencies.

The UK Government Digital Service (GDS) has been a leader here. Their design system mandates performance budgets and accessibility standards that naturally limit page weight. The result: gov.uk pages typically come in under 0.3g per page view. Compare that to many US federal agency sites which regularly exceed 1.0g.

The European Commission's new Web Sustainability Guidelines, published in December 2025, recommend that all public sector websites target the "good" threshold of 0.5g per page view by 2027.

SaaS and Tech: Setting the Standard

SaaS products and developer tools average just 0.31g per page view, making them the cleanest sector in our dataset. Several factors explain this:

The Page Weight Connection

There is a near-linear relationship between page weight and carbon emissions. Our data shows a correlation coefficient of 0.89 between total page weight (in MB) and CO2 per page view. In practical terms:

Page weightEstimated CO2Rating
Under 500 KB< 0.2gExcellent
500 KB – 1.5 MB0.2 – 0.5gGood
1.5 MB – 3 MB0.5 – 1.0gAverage
3 MB – 5 MB1.0 – 1.8gPoor
Over 5 MB> 1.8gVery poor

This gives teams a simple proxy metric: if you can reduce your page weight, you will reduce your carbon footprint almost proportionally.

Trends: What Changed From 2025 to 2026

Comparing our 2025 and 2026 datasets reveals some shifts worth noting:

How to Benchmark Your Own Site

Knowing the industry average is useful, but you need your own number. Here is a straightforward process:

  1. Test your top 5 pages — homepage, main product/service page, blog post, contact page, and your highest-traffic landing page. Use the Carbon Badge calculator for each.
  2. Calculate your weighted average — multiply each page's CO2 score by its share of total traffic (from your analytics), then sum the results.
  3. Compare against your sector — use the table above to see where you fall. Are you in the top 10% or the bottom 10%?
  4. Estimate total annual emissions — multiply your weighted average by annual page views. This gives you a number you can include in sustainability reports.
  5. Set a target — aim for the top 10% in your sector within 12 months. For most sites, this means a 40-60% reduction from the current median.

Reduction Strategies That Actually Work

After working with dozens of companies on their website carbon reduction, here are the interventions that consistently deliver the biggest impact:

1. Image optimization (typical saving: 30-50%)

Convert to WebP or AVIF. Implement responsive images. Lazy-load everything below the fold. This single change reduces page weight more than anything else for image-heavy sites.

2. JavaScript audit (typical saving: 15-30%)

Remove unused scripts. Defer non-critical JavaScript. Replace heavy libraries with lighter alternatives (htmx instead of React for simple interactions). Most sites load 2-3x more JavaScript than they actually execute.

3. Green hosting (typical saving: 70-90% of server emissions)

Switch to a provider running on renewable energy. This does not reduce data transfer emissions, but it eliminates the largest single component of server-side carbon. Check the Green Web Foundation directory for verified providers.

4. Efficient caching (typical saving: 10-20%)

Proper cache headers mean returning visitors load most resources from local storage rather than re-downloading them. Set long cache lifetimes for static assets and use versioned filenames for cache busting.

5. Font optimization (typical saving: 5-10%)

Subset your web fonts to include only the characters you need. Use font-display: swap to prevent layout shifts. Consider system fonts for body text — they load instantly and cost zero data transfer.

Measure Your Website's Carbon Footprint

Get your free carbon score and see how you compare against 50,000+ websites. Test your site now

What CSRD Means for Website Carbon Reporting

Starting with fiscal year 2025 reports (due in 2026), companies subject to the EU Corporate Sustainability Reporting Directive must disclose Scope 3 emissions. Digital infrastructure — including websites, cloud services, and SaaS tools — falls under Scope 3 Category 1 (purchased goods and services) or Category 11 (use of sold products) depending on your business model.

This regulatory pressure is new and real. In our dataset, companies subject to CSRD have websites that are 23% lighter on average than non-CSRD companies in the same sector. Regulation works.

If your company reports under CSRD, you should already be measuring website carbon. If you are not yet required but expect to be (the directive expands to smaller companies from 2026-2028), getting ahead of the requirement gives you a baseline to show improvement against.

Frequently Asked Questions

What is the average carbon footprint of a website per page view?

The global median is 0.64 grams of CO2 per page view in 2026, based on analysis of over 50,000 websites. However, this varies dramatically by industry: media sites average 1.42g while text-based SaaS tools average 0.31g.

Which industry has the highest website carbon emissions?

Media and news websites have the highest average emissions at 1.42g CO2 per page view, driven by auto-playing video, high-resolution images, extensive ad tech scripts, and real-time content delivery infrastructure.

How do I measure my website's carbon footprint?

Use a website carbon calculator like Carbon Badge that measures data transfer, server energy, and CDN usage per page load. Enter your URL to get an instant estimate based on the Sustainable Web Design Model v4.

What is a good carbon footprint score for a website?

Anything under 0.5g CO2 per page view is considered good. Under 0.3g is excellent. The cleanest 10% of websites emit less than 0.2g per page view. If your site exceeds 1.0g, there are likely significant optimization opportunities.

Does green hosting reduce my website's carbon footprint?

Yes. Switching to a green hosting provider powered by renewable energy can reduce the server-side carbon footprint by 70-90%. However, hosting is only one component: data transfer, client-side processing, and third-party scripts also contribute significantly.