---
title: "What factors make a website load as quickly as possible?"
url: "https://b13.com/knowledge/make-website-load-fast"
description: Explore practical solutions to improve website load times and performance through server, network, and front-end optimizations, including TYPO3-specific strategies.
image: "https://b13.com/fileadmin/_processed_/f/0/csm_QuickLoad_Sharing_a48f848861.png"
date: 2025-04-08
modified: 2026-08-19
lastUpdated: 2026-08-19
---

# What factors make a website load as quickly as possible?

[ Performance ](https://b13.com/knowledge/performance) [ Cache ](https://b13.com/knowledge/cache)

 What factors make a website load as quickly as possible?
==========================================================

 Understanding Key Technical and Network Factors for Optimal Website Load Times and Performance

![](https://b13.com/fileadmin/_processed_/a/d/csm_david_5ce18d41e2.jpg)David Steeb

  30 April 2025

 [ RSS Feed ](https://b13.com/rss.xml)

We’ve all been there: Clicking a link from search results or social media, only to be met with… nothing. Instead of the page, you’re staring at the endless loop of a progress spinner. Most of us might wait two or three seconds on mobile before closing the tab and moving on. If this were your site, you’d have lost a visitor because the page didn’t load fast enough.

  According to Toolster’s 2024 Website Load Time statistics, [websites take an average of 11.48 seconds to load on mobile](https://www.tooltester.com/en/blog/website-loading-time-statistics/#top100), significantly worse than the two seconds it takes on desktop. This poses a real problem for developers and website owners in a mobile-first world. There is a lack of discussion about what’s needed to create faster websites. While some elements of website performance will remain out of your hands, like the user’s device and network, most levers to optimize speed are at your disposal—especially if you’re using an open source CMS like TYPO3.

We’ve compiled a guide to the most critical factors affecting performance. Drawing on our extensive TYPO3 development expertise, we offer solutions grounded in years of experience. While the core principles of performance optimization remain primarily unchanged, emerging technologies continuously offer new opportunities. At b13, we’re always watching for innovations that allow us to push performance even further.

   What are the foundational areas of website speed that never change?
---------------------------------------------------------------------

- **Your server**: The hub where your application runs, content is generated, and output is produced.
- **The network**: The pathway connecting your server to the user’s device, enabling data transmission.
- **User’s browser**: The gateway that transforms raw data from the server into a fully rendered web page visible to the user.

Before diving into the specifics, it’s good to understand that these foundational areas work together to influence how quickly your website loads. Each element, from server efficiency to how the user’s browser handles data, works together to deliver a fast website experience.

   What makes a website load as quickly as possible?
---------------------------------------------------

There are 15 factors to keep in mind:

- **Server performance**:
    Consider the efficiency of your server’s operating system, CMS, and database.
- **Network performance**:
    Minimize the distance between the server and the user .
- **Browser caching**:
    Store frequently-used data locally.
- **Content delivery caching**:
    Store copies of website content at various global locations.
- **Image optimization**:
    Use smaller, well-compressed images, and, if applicable, render breakpoint/device specific image sizes.
- **CSS and JS file optimization**:
    Minify and optimize files.
- **JavaScript**:
    Limit and optimize JavaScript usage.
- **Caching**:
    Implement caching strategies for faster retrieval.
- **Lazy loading of images**:
    Delay image loading until they’re needed.
- **Redirects**:
    Reduce unnecessary redirects.
- **Internet speed**:
    Faster internet connections result in quicker load times.
- **Poor hosting**:
    Upgrade to better hosting services to improve overall site speed.
- **Excessive plugins or scripts**:
    Remove unnecessary plugins and scripts .
- **Bloated code or design**:
    Clean up inefficient code and simplify design.
- **Outdated devices**:
    Optimize the site to work smoothly even on older hardware.

   Evolving user expectations for website load times
---------------------------------------------------

Back in the 90s, the Nielsen Norman Group found that users lost interest if a site took [more than 10 seconds to load](https://www.nngroup.com/articles/powers-of-10-time-scales-in-ux/#toc-10-seconds-3). Today, faster internet and improved technology have raised user expectations. In 2024, the general consensus is that a 2-second or less load time is best, especially for eCommerce sites. You don’t have to look far to find articles containing metrics and benchmarks on website speed and optimization. We won’t overwhelm you with the many and varied statistics—suffice it to say that Google found that as [page load time goes up to 5 seconds, the probability of the web visitor bouncing increases 90%](https://www.thinkwithgoogle.com/marketing-strategies/app-and-mobile/mobile-page-speed-new-industry-benchmarks/). And Amazon famously found that [every 100ms of latency costs 1% in sales](https://www.conductor.com/academy/page-speed-resources/faq/amazon-page-speed-study/).

   Optimizing Your Website’s Speed: Practical Solutions
------------------------------------------------------

Now that we’ve outlined the key factors and user expectations, let’s dive into practical solutions. As we mentioned, speed is not a single element but the result of multiple optimizations across the server, code, and network.

  ###  Server-Side optimizations

Efficient server configuration is the foundation of good website speed. [TYPO3 CMS, for instance, can perform exceptionally well out of the box](https://b13.com/tools/typo3). However, misconfigurations or custom extensions can slow it down. Database inefficiencies and improper cache setups can degrade performance before data leaves your server.

At b13, we leverage [tools like Blackfire to audit and profile applications](https://b13.com/knowledge/why-we-use-blackfire-to-speed-up-typo3-websites). Blackfire helps pinpoint performance bottlenecks, guiding developers to areas where code optimizations lead to significant improvements. For a deeper understanding of TYPO3’s caching mechanisms, check out our [three-part blog series that covers frontend caches, cache variants with cHash, and more advanced caching techniques](https://b13.com/knowledge/caching-in-typo3-part-1-frontend-caches).

  ###  Leveraging browser and content delivery caching

Once your server is optimized, the next step is network performance. Your audience might experience delays if they are located a significant distance away from the server. Using a[ Content Delivery Network (CDN) mitigates this delay by mirroring static content](https://b13.com/knowledge/how-cdns-and-typo3-offer-superior-speed-uptime-and-user-experience) on servers located geographically close to your users. CDNs also offload static assets and optimize delivery through protocols like HTTP/2, speeding up requests.

  ###  Front-End performance tweaks

  ####  General Advice for Developers and Website Owners

- **HTML Optimization:**
    Simplify your HTML structure to save on file size. Removing optional tags or containers can reduce file size by 5–20%.
- **Reduce JavaScript Usage:**
    Minimizing JavaScript and relying on CSS for styling can drastically improve performance.
- **Image Optimization:**
    Use optimized image formats like WebP and employ lazy-loading techniques to improve load times.
- **CSS and Fonts:**
    Inline critical CSS and minimize custom fonts for better performance.

  ####  b13 and TYPO3-Specific Advice

TYPO3’s flexibility supports advanced front-end optimizations. Its [Fluid templates](https://typo3.org/fluid) enable you to minimize HTML and reduce reliance on JavaScript, a common cause of slow rendering.

At b13, we favor Vanilla JavaScript for essential functions, avoiding heavy libraries like jQuery. We also prioritize image optimization by using services like [Tinify](https://tinypng.com/developers/reference) ([read about integrating Tinify into TYPO3 here](https://b13.com/typo3-expertise/integrations/tinify)) and switching to formats like [WebP](https://developers.google.com/speed/webp#:~:text=WebP%20is%20a%20modern%20image,that%20make%20the%20web%20faster.), which reduces file sizes.

   Evolving technology and speed: A case of AMP’s decline
--------------------------------------------------------

Google introduced Accelerated Mobile Pages (AMP) in 2015 to improve mobile web performance by limiting JavaScript and CSS, and using a global AMP cache for fast loading. Initially favored in search results, [AMP’s relevance has diminished](https://intuji.com/are-amps-still-important-in-2024/), especially with the rise of [Core Web Vitals](https://web.dev/articles/vitals#core-web-vitals) focused on page speed and user experience.

When a client recently asked about AMP, I responded clearly: “We don’t do AMP anymore, and none of our websites still rely on it.” This shift illustrates how rapidly technology evolves, how important it is to work with developers who change their minds, and why we love being direct with our clients!

  ###  Adding core web vitals for optimal User Experience

Optimizing for Core Web Vitals is now essential for delivering fast, user-friendly experiences. Metrics like **Largest Contentful Paint (LCP)** and **Cumulative Layout Shift (CLS)** directly affect how visitors perceive speed and usability. To learn more about how TYPO3 supports these metrics and ways to improve them, check out our [Core Web Vitals Primer for TYPO3 Users](https://b13.com/knowledge/a-core-web-vitals-primer-for-typo3-users).

   Make performance a requirement for your project
-------------------------------------------------

When commissioning a new web project, website performance should be at the top of your list of requirements. It should be considered in every step, starting early. Have developers give input while still in talks about the basic design and concept decisions. They will give valuable input about performance impact. Test your infrastructure early and often. Speed-test your templates and correct what’s impacting browser rendering before rolling out frontend templates in your CMS. Continue testing once the final content is ready.

    > Treat a slow website as a bug.

  Benni Mack

   “Treat a slow website as a bug”
---------------------------------

Benni Mack, my colleague and business partner for 20 years, often uses the phrase: “Treat a slow website as a bug.” If you get complaints from your users, experience delays, see unexpected bounce rates, or just have a suspicious feeling that your site is getting slower, do a performance audit. Start at the server level and work to the final front-end rendering. The benefits of fixing the low-hanging fruit will pay off.

If you don’t know where to start, ask for help. We are happy to take a look and help you identify areas for improvement. As a [TYPO3 partner agency](https://typo3.com/partners/professional-service-listing/detail/b13), we can work with your developers or agency to demonstrate how we use Blackfire, optimize image loading, configure a CDN for your website, or improve the performance and speed of specific landing pages—or your entire website.

  ###  Written by:

 ![Bild von David Steeb](https://b13.com/fileadmin/_processed_/a/d/csm_david_cf042ebb7f.webp)

b13 Founder and CEO, David, is someone you’ll meet if you’re thinking about working with our agency. He is constantly learning new skills and is an influential part of our cutting-edge frontend practice.

 David Steeb  CEO

 [ more from David Steeb ](https://b13.com/team/david-steeb)

  Related Articles
------------------

- ![A human hand shakes a robotic hand against a purple background with heart patterns, symbolizing collaboration between humans and technology.](https://b13.com/fileadmin/_processed_/6/2/csm_AIbotsLoveMarkdown_Headerbild_72fe5820d6.webp)

    ###  The Internet Is No Longer Just for Humans—AI Bots Love Markdown

     28 January 2026 | Benni Mack

     Discover why most web traffic is now automated and how TYPO3’s structured content model prepares websites for humans, editors, and AI systems.

     [ Read more: The Internet Is No Longer Just for Humans—AI Bots Love Markdown ](https://b13.com/knowledge/the-internet-is-no-longer-just-for-humans-ai-bots-love-markdown)
- ![A laptop is connected to multiple file folders and browser windows, illustrating data management and organization concepts.](https://b13.com/fileadmin/_processed_/8/9/csm_SubdirectoriesSubdomains_Sharing_be4a05761c.webp)

    ###  Subdirectories vs. Subdomains: Which is Better for SEO?

     23 October 2025 | David Steeb

     Subdirectories, Subdomains, and Better SEO Rankings. The answer to which one should I use? is always it depends. Subdomains and subdirectories interact differently with SEO…

     [ Read more: Subdirectories vs. Subdomains: Which is Better for SEO? ](https://b13.com/knowledge/subdirectories-vs-subdomains)
- ![A pathway leads through stylized clouds, flanked by a magnifying glass and gears, with icons representing text and documents in the background, suggesting themes of exploration and technology.](https://b13.com/fileadmin/_processed_/8/0/csm_accessibility-guide_0acd1932f3.webp)

    ###  A Guide to Accessibility Considerations in UX Design

     12 April 2024 | Franzi Töpler

     People with disabilities constitute one of the most significant segments of online users, but it is an often-overlooked population in the digital world. Increasing accessibility to…

     [ Read more: A Guide to Accessibility Considerations in UX Design ](https://b13.com/knowledge/a-guide-to-accessibility-considerations-in-ux-design)
- ![A teal laptop displays a yellow heartbeat line across the screen, with abstract graphs in the background, suggesting data analysis or monitoring.](https://b13.com/fileadmin/_processed_/0/8/csm_CoreWebVitals_Headerbild_b4abe20660.webp)

    ###  A Core Web Vitals Primer for TYPO3 Users

     16 February 2024 | Franzi Töpler

     The Core Web Vitals are the go-to metrics for determining if a web page responds to user interaction swiftly and without disruptions. TYPO3 admins and developers need to know how…

     [ Read more: A Core Web Vitals Primer for TYPO3 Users ](https://b13.com/knowledge/a-core-web-vitals-primer-for-typo3-users)
- ![A stylized treasure map featuring landforms, a winding path, trees, and mountains, with an "X" marking a specific location. The background is a gradient of purple with abstract shapes.](https://b13.com/fileadmin/_processed_/4/1/csm_ux-trouble-shooting-user-journey_211db787f7.webp)

    ###  Improving The User Journey: How to help your users find what they are looking for

     14 March 2023 | Laura Heine

     The user journey is a substantial part of the user experience (UX). If users are unable to complete a task in your app or on your website, their user experience plummets—so does…

     [ Read more: Improving The User Journey: How to help your users find what they are looking for ](https://b13.com/knowledge/improving-the-user-journey-how-to-help-your-users-find-what-they-are-looking-for)
- ![A magnifying glass overlays various abstract shapes, including gears and rectangles, against a dark purple background. The design suggests themes of search, analysis, and technology.](https://b13.com/fileadmin/_processed_/b/a/csm_ux-trouble-shooting-search_baed040eb3.webp)

    ###  On-site search is more than a small box in the corner

     10 March 2023 | Laura Heine

     Users want to find information fast. If the page navigation is insufficient, they quickly resort to the search functionality. Nowadays, users expect that an on-site search is easy…

     [ Read more: On-site search is more than a small box in the corner ](https://b13.com/knowledge/on-site-search-is-more-than-a-small-box-in-the-corner)
- ![A stylized graphic featuring a house with three horizontal bars representing data storage, a padlock symbolizing security, and a key. Background elements include leaves and abstract shapes, suggesting a digital or cloud-based theme.](https://b13.com/fileadmin/_processed_/2/5/csm_on-prem_e9249f94ba.webp)

    ###  Why choose On-Prem over SaaS for your CMS?

     14 February 2023 | David Steeb

     Enterprises now have many software delivery channel options to choose from. With software-as-a-service (SaaS) and cloud-based implementation models on the rise, you might be trying…

     [ Read more: Why choose On-Prem over SaaS for your CMS? ](https://b13.com/knowledge/why-choose-on-prem-over-saas-for-your-cms-in-2022)
- ![Abstract design featuring various rectangular shapes and lists in shades of orange, with some elements appearing semi-transparent. The layout suggests a digital interface or dashboard.](https://b13.com/fileadmin/_processed_/0/a/csm_better-menus_fcead77fa7.webp)

    ###  More efficient menus for TYPO3

     09 August 2022 | Benni Mack

     Before you buy more server space to speed up a slow-loading TYPO3 site, there might be another solution. Transitioning from TYPO3’s native menu to b13’s menus extension can…

     [ Read more: More efficient menus for TYPO3 ](https://b13.com/knowledge/more-efficient-menus-for-typo3)
- ![A computer monitor displays a starburst design, surrounded by stylized plants and a desk lamp, all set against a warm, gradient background with abstract shapes.](https://b13.com/fileadmin/_processed_/d/e/csm_workspaces_4bcc71e65c.webp)

    ###  Workspaces Improvements

     01 July 2022 | Benni Mack

     One of TYPO3’s powerful features for content publishing is Workspaces—creating and staging in a draft environment before publishing content. TYPO3 v11 adds a few important touches…

     [ Read more: Workspaces Improvements ](https://b13.com/knowledge/workspaces-improvements)
- ![A stylized rocket launching from a computer screen, with lines of code displayed on the screen and arrows indicating movement or progress. The background features abstract shapes and dots in a dark color scheme.](https://b13.com/fileadmin/_processed_/3/2/csm_CLI-commands_2f557a47c9.webp)

    ###  New CLI commands and better automation for Continuous Integration

     11 January 2022 | Christian “Lolli” Kuhn

     TYPO3 v11 gave the command line interface a boost with new commands. We show you the benefits to installations running in Composer mode.

     [ Read more: New CLI commands and better automation for Continuous Integration ](https://b13.com/knowledge/new-cli-commands-better-automation-for-continuous-integration)