Skip to content
12 min

Sustainable Web Design: Why and How to Create a Sustainable Website

Justyna Labadz

Justyna Labadz

Sustainable web design is not a parallel initiative to performance work — it is the same work. Here is why it matters for cost, speed, and governance, what makes a website sustainable in practice, and how to keep it that way after launch.

Summarize in

ChatGPT

or

TL;DR

Sustainable web design means building and running websites that use the least energy and data necessary to do their job. For anyone responsible for a large web estate, the practical takeaways are:

  • The web has a real footprint. Data centers, networks, and the devices your pages run on all draw power — and page weight multiplied across an estate adds up fast.

  • Sustainable and fast are the same work. Everything that reduces a website’s emissions — less JavaScript, optimized images, fewer third-party scripts, aggressive caching — is also what makes it quick, cheap to serve, and easier to rank.

  • Hosting is the fastest lever, but claims vary widely. “Green hosting” ranges from self-generated renewables to purchased certificates. Knowing the difference protects you from greenwashing.

  • Accessibility and sustainability overlap. Lighter, simpler, semantically built sites serve people on slow connections, older devices, and assistive technology better.

  • It is an operating habit, not a launch feature. Page weight creeps back after go-live. Budgets, audits, and content pruning keep a site sustainable over time.

Why sustainable web design matters

The internet feels immaterial, but every page view is backed by physical infrastructure: servers that run around the clock, networks that move the data, and the device in the visitor’s hand that renders it. All of it runs on electricity, and much of that electricity still comes from fossil fuels.

The scale is easy to underestimate. According to The Shift Project’s 2019 Lean ICT report, digital technology accounted for roughly 3.7% of global greenhouse gas emissions — in the same range as the airline industry. The Sustainable Web Manifesto puts it more bluntly:

Quote

Sustainable Web Manifesto

For a single page, the numbers are small. For a web estate, they compound. HTTP Archive estimated that the average webpage in 2023 carried 21 images and about one megabyte of image transfer alone. Multiply a heavy template by thousands of pages and millions of visits, and the estate’s footprint — in energy, in bandwidth cost, in wasted visitor time — stops being a rounding error.

There is a device-side dimension too. Heavy, CPU-hungry pages drain batteries and push older phones and laptops toward replacement, and manufacturing is where most of a device’s lifetime energy goes — around 80% of it, according to Ethical Consumer. Efficient websites are one small way to extend the useful life of the hardware people already own.

The business case

You do not need to lead with the planet to justify this work. The same practices pay for themselves in four ways.

Lower operating cost. Data transfer, compute, and storage are billed. A lighter site means smaller bandwidth and infrastructure bills, fewer servers doing less work, and a codebase that is simpler to maintain. Efficiency here is not a trade-off against quality — it is the removal of waste.

Performance and conversion. Faster pages bounce less, convert better, and rank better. When Wistia removed the autoplay video from its homepage, the company reported a 53% increase in organic traffic to the page, 7% more sign-ups, and a 4% improvement in exit rate. Speed is a commercial metric that happens to have an environmental twin.

Reporting and governance. If your organization reports under CSRD or a similar ESG framework, the digital estate is part of the footprint you account for — and unlike many emissions sources, it is one your team directly controls. The financial logic holds up beyond compliance: a Harvard Business Review analysis of 200 studies found that 90% concluded good ESG standards lower the cost of capital. Deloitte’s 2023 CxO Sustainability Report, surveying 2,000 executives across 24 countries, found 61% expected climate change to have a high or very high impact on their strategy and operations within three years — and 66% of their companies were already working to increase energy efficiency.

Brand credibility. A verifiable, measured statement — “we cut our homepage’s per-view emissions by X, here is how” — is worth more than any green badge. The reverse also applies: sustainability claims your website’s own weight contradicts are a reputational liability, and EU rules against greenwashing keep tightening.

Two well-documented examples show what the work looks like at scale. Wholegrain Digital’s carbon audit for Unilever focused on the heaviest, most-visited pages; the recommended design and code changes cut the homepage’s emissions from 0.80g to 0.20g of CO2 per view — a fourfold reduction. And when Starbucks replaced its mobile ordering app with a progressive web app, Formidable’s case study recorded the drop from a 148MB iOS app to a 233kB web experience. Neither project was framed as environmental work. Both were performance and cost work that happened to be sustainable — which is precisely the point.

What makes a website sustainable

Sustainable web design is not a separate discipline with its own toolkit. It is disciplined frontend engineering, applied consistently. These are the practices that matter most.

Ship less JavaScript

JavaScript is the most expensive kind of page weight: it has to be downloaded, parsed, and executed on every visitor’s device. A 2021 study by researchers at Portuguese universities, “Ranking Programming Languages by Energy Efficiency,” found compiled languages the most energy-efficient and placed JavaScript 17th — sobering for the language most websites lean on hardest.

The practical answer for a content-heavy estate is architectural: render pages to static HTML wherever possible and reserve JavaScript for the interactions that genuinely need it. Modern frameworks make this the default rather than an optimization. Prefer CSS over JavaScript for animation and layout work — it does the same job with less CPU. And keep what remains minified, tree-shaken, and free of dead code.

Optimize images — and be honest about video

Images are usually the largest share of page weight, and the fixes are well understood: choose the right format (AVIF or WebP for photography, SVG for icons and illustration), size images to the layout instead of shipping originals, compress everything, and lazy-load whatever sits below the fold.

Video deserves a harder look. In World Wide Waste, Gerry McGovern cites a calculation by scientist Rabih Bashroush that the “Despacito” music video’s five billion YouTube views consumed as much electricity as Chad, Guinea-Bissau, Somalia, Sierra Leone, and the Central African Republic use in a year. On your own site, the rule of thumb is simple: no autoplay, especially not full-screen on the homepage; embed from a dedicated video platform rather than self-hosting; and ask whether an animation or a well-written paragraph would do the job. Wistia’s own numbers above suggest removing homepage video can help the metrics you already care about.

Treat fonts as a budget line

Custom typography is worth having, but it is not free. Use WOFF2, subset font files to the characters you actually use, limit the number of families and weights, and consider variable fonts — one file covering the weights and styles that would otherwise be four downloads. System fonts remain the zero-transfer option for body text where brand allows.

Audit third-party scripts

Analytics, tag managers, chat widgets, personalization snippets, consent tooling — third-party scripts accumulate one reasonable decision at a time, and each one adds transfer, execution time, and data-privacy surface you do not control. Inventory them at least annually. Remove what nobody uses, consolidate what overlaps, and prefer lightweight, privacy-first alternatives where they exist. This is often the cheapest large win in an estate-wide performance review.

Cache aggressively and serve from a CDN

Every request that a cache or CDN edge node answers is a request your origin infrastructure never processes. Serving content from a location near the visitor cuts both latency and the energy spent moving data — the same intervention, seen from two angles. For an audience spread across markets, a CDN is standard practice; just note that a CDN is itself a hosting provider and deserves the same sustainability scrutiny as your primary host.

Set page-weight and performance budgets

Budgets turn all of the above from good intentions into a system. Define the maximum a page type may weigh — images, fonts, scripts, styles, markup, everything — and the Core Web Vitals thresholds it must meet, then enforce those limits in the build pipeline so a regression fails loudly before it ships. A budget is also an effective governance tool across teams and agencies: it makes “the new campaign page is 8MB” a measurable defect rather than a matter of taste.

Run this list back and notice what it is: a performance optimization checklist. That is the central, practical insight of sustainable web design — the sustainability work and the speed work are the same work. You do not need a second roadmap; you need to do the first one properly.

How to evaluate green hosting

Hosting is where your website’s electricity is actually consumed, which makes it the quickest sustainability decision you can act on — and the easiest place to be misled.

Data centers are extraordinarily energy-intensive: the U.S. Department of Energy puts their consumption at 10 to 50 times more energy per unit of floor space than a typical commercial office building. Water matters too — Venkatesh Uddameri, director of the Water Resources Center at Texas Tech University, has estimated that a typical data center uses 3–5 million gallons of water per day, comparable to a city of 30,000–50,000 people.

“Green hosting” is therefore worth pursuing — but the label covers very different realities. When a provider says it runs on renewable energy, it usually means one of these, in descending order of substance:

  1. Self-generated renewables. The provider owns and operates its own renewable capacity. The strongest claim and the rarest.
  2. Funding new renewables. Long-term power purchase agreements (PPAs) that finance the construction of new renewable generation. Nearly as strong — it adds clean capacity to the grid.
  3. Purchasing renewable energy from sources on the same grid the data center draws from. A reasonable minimum standard.
  4. Buying renewable energy certificates (RECs) from other regions or countries. The most common arrangement; it funds renewables somewhere, but the electrons powering your site may still come from fossil fuels.
  5. Carbon offsetting. Paying others to reduce emissions elsewhere. Legitimate as a supplement, weak as the whole story.

Practical due diligence, whichever providers you are comparing:

  • Check the claim, not the badge. The Green Web Foundation maintains a directory of verified green hosts and lets you check any domain. If a provider is not listed, ask why.
  • Ask how the energy is sourced — which tier above — and whether they publish evidence: certifications, emissions inventories, sustainability reports. Transparency on request is the minimum; unwillingness to share is an answer in itself.
  • Ask about efficiency, not just sourcing. Data-center PUE (power usage effectiveness), cooling approach, and hardware life-cycle practices tell you how much energy is needed in the first place.
  • Evaluate it as hosting first. Uptime record, performance, support quality, security posture, scalability, contract terms, and pricing still decide whether the service fits your estate. A green host that cannot meet your reliability requirements is not a sustainable choice — it just moves the waste elsewhere.
  • Match the model to your estate. Traffic profile, regional audience, and compliance requirements should drive the choice between shared, dedicated, and cloud infrastructure — and whether a CDN layer belongs in front of it. There is no single right provider, only the right fit for your requirements.

Green hosting does not typically cost more than the conventional kind, and renewable supply tends to be less exposed to fuel-price volatility. But remember the order of operations: hosting greens the supply of energy; the practices in the previous section reduce the demand. You want both, and demand comes first — a wasteful site on renewable servers is still a slow, expensive site.

The accessibility connection

Sustainability is usually framed as an environmental concern, but the same design discipline serves people directly — and the overlap with accessibility is large enough that treating them together is simply efficient.

The audience is not a niche. The World Health Organization estimates that 1.3 billion people — about 16% of the global population — experience significant disability. Yet the WebAIM Million report found in 2023 that 96.3% of the top million homepages had detectable WCAG 2 failures. The gap between audience and practice remains enormous, and it carries legal exposure that sustainability, so far, does not.

Where the two disciplines reinforce each other:

  • Semantic HTML is the foundation of both. Clean, well-structured markup is what screen readers navigate, what search engines parse, and what keeps pages small and maintainable.
  • Lighter pages reach more people. A site that performs on a slow connection or a ten-year-old device is more accessible in the plainest sense — and every byte saved serves that goal.
  • Respecting user preferences — reduced motion, dark mode, user-controlled contrast — improves comfort for people who need it and reduces device energy use on OLED screens.
  • Alternatives to heavy media — real text instead of text-in-images, SVG animation instead of video, meaningful alt text — serve assistive technology and page weight simultaneously.
  • Simpler journeys waste less of everything. Clear information architecture helps every visitor find what they came for faster, which is better UX, better accessibility, and less energy per completed task.

The W3C’s Web Sustainability Guidelines make the relationship explicit: modeled on WCAG, they treat people and planet as criteria of the same quality standard. In practice, an estate that takes accessibility seriously is most of the way to taking sustainability seriously, and vice versa.

Sustainability is an operations habit, not a launch feature

A website is at its lightest on launch day. From there, entropy takes over: campaign pages accumulate, a tag gets added for one report and never removed, an editor uploads a 6MB hero image, a redesign of one template quietly doubles its JavaScript. Sustainability, like performance, is not a state you reach — it is a property you maintain.

That means building it into how the site is run after go-live:

  • Measure on a cadence. Track page weight and Core Web Vitals for your highest-traffic templates, not just the homepage. Carbon-estimation tools such as the Website Carbon Calculator or Ecograder are useful for communicating the footprint; your performance monitoring is what catches the regressions.
  • Enforce budgets automatically. Page-weight and performance budgets belong in the build pipeline, where they stop regressions before deployment rather than explaining them afterwards.
  • Audit the heaviest, most-visited pages first. As the Unilever example shows, emissions and traffic are concentrated — a handful of templates usually accounts for most of the footprint, so that is where audit effort pays back fastest.
  • Prune the estate. Content you publish costs energy to store, crawl, and maintain even when nobody reads it. A 2018 Ahrefs study found 91% of the pages it analyzed received zero traffic from Google. A regular content audit — consolidate, update, or remove — makes the site lighter, easier to govern, and stronger in search.
  • Hold new features to the same standard. AI-driven features are the current pressure point: they add script weight on the page and computational load behind it, at a moment when the energy footprint of AI itself is growing sharply — data scientist Alex de Vries estimated that AI data centers could consume 85–134 terawatt-hours annually by 2027. None of that argues against useful features; it argues for putting them inside the budget like everything else.

This is also the honest framing for anyone who owns a large web estate: sustainable web design is not a redesign project you commission once. It is part of how a website is operated — measured, budgeted, audited, and continuously improved — long after launch. Done that way, it stops being a separate initiative with its own business case and becomes what it really is: running your website well.

If you want an outside view of where your estate stands — what your heaviest pages cost you in speed, spend, and emissions, and what to fix first — get in touch.

References

Authors

Justyna Labadz
Justyna Labadz

Justyna is a book author and researcher who examines digital design and new media art phenomena with great attention. She strives to explain the tech world to readers straightforwardly and descriptively. normal

Share

knowledge hub for managers,devs and nerds