---
title: Why fast website performance should be a requirement
url: "https://b13.com/knowledge/make-website-load-fast"
description: A slow website is loosing you business. Here’s why performance of your website matters—and what you can do to improve yours.
image: "https://b13.com/fileadmin/_processed_/b/4/csm_why-performance-matters_Header_b20d0ed6bf.png"
date: 2020-02-27
modified: 2026-08-19
lastUpdated: 2026-08-19
---

# Why fast website performance should be a requirement

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

 Why performance matters
=========================

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

  05 February 2020

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

  ![A stylized rocket with a large eye-shaped window is launching through a colorful space scene, surrounded by planets and rings, against a dark background.](https://b13.com/fileadmin/_processed_/b/4/csm_why-performance-matters_Header_901342d4b8.webp)

You know the feeling: You click on a link in a search result, your Twitter feed or something else and … nothing happens. You’re on your phone staring at a blank screen. I usually don’t wait more than two or three seconds. I just go back and close the tab or try a different search. If I was waiting for your website to load—you just lost a visitor, simply because you did not answer my knock on your door.

  **Read an updated version of this blog post here:**

- [What factors make a website load as quickly as possible?](https://b13.com/knowledge/make-website-load-fast)

   Slow websites lose visitors
-----------------------------

[Benchmarks from Google](https://www.thinkwithgoogle.com/marketing-resources/data-measurement/mobile-page-speed-new-industry-benchmarks/) show that 53% of mobile users leave a site that takes longer than three seconds to load. According to the same study, about 70% of the landing pages Google analyzed took more than five seconds to load and display all visible content above the fold.

The study states that the bounce rate increases by 90% if a link clicked takes 5 seconds to load, rather than just one second. Bounce rate is the number of users leaving your website. Similarly, an [Amazon analysis](https://www.gigaspaces.com/blog/amazon-found-every-100ms-of-latency-cost-them-1-in-sales/) found that every 100ms of latency costs 1% in sales.

[A case study by Akamai](https://developer.akamai.com/blog/2015/09/01/mobile-web-performance-monitoring-conversion-rate) analyzing a major e-commerce website shows the sweet spot for the best conversion rate is a website loading time of 2.4 seconds. If the page load is just 1 second slower at 3.3 seconds, the conversion rate drops by more than 20%.

   Search engines love fast websites
-----------------------------------

Website performance has for a long time been a ranking signal for Google. With the [addition as a ranking factor for mobile searches](https://webmasters.googleblog.com/2018/01/using-page-speed-in-mobile-search.html) in July 2018, site performance is even more important. Depending on your audience, mobile users most likely outweigh those using desktop searches on your site—or, if not, that will soon be the case. Google also openly favors AMP pages, serving search results from [their own global AMP cache](https://developers.google.com/search/docs/guides/about-amp) to speed up these pages as much as possible.

We found on a recent relaunch of a client website that the search ranking for their most important keywords significantly improved by optimizing website performance.

  ![Table displaying search term rankings before and after optimization, including terms like "Ausbildungsmanagement Software" and "Bewerbermanagement Software," along with their respective rankings and percentage changes.](https://b13.com/fileadmin/_processed_/c/a/csm_easySoft_searchterm_tabelle_01_15a487b1f8.webp)  Figure 1. Comparison of search result ranking numbers for our client before and after a performance-focused relaunch of their corporate website for their most important search terms. (13 August 2019).

   What’s impacting website performance?
---------------------------------------

When assessing a website’s performance, we look at three main areas:

- **Your server:**
     This is where your application is located, content is created and the output is rendered.
- **The network:**
     The connection between your server and the user’s device.
- **The user’s browser:**
     The browser takes the raw data it receives from your server and renders your webpage in a visible form for the user.

   The server side
-----------------

A lot of software is running on your server, including the server’s operating system, PHP, a CMS, your database, and possibly other applications. According to [Google’s site data](https://typo3.com/blog/typo3-delivers-great-performance), TYPO3 CMS is the fastest Open Source CMS out of the box. Still, a misconfigured setup or custom extensions can slow down the CMS. Slow database queries in custom extensions, invalid or inefficient cache configuration and other errors can impact the performance of your website before any data leaves your server.

We use [Blackfire](https://b13.com/tools/blackfire), a PHP profiling tool, to test the server side of your application. Blackfire ensure that the application is performing optimally and can find what’s impacting the rendering time on your server. When analyzing a website in a performance audit, Blackfire often helps speed up the overall application significantly by pointing developers to the places in their code that require the most optimizing.

 [ Let’s connect ](https://b13.com/lets-connect)

   The network
-------------

If the server is responding as it should, and if the application is running optimally, it’s time to take a look at the network. Your server typically is located geographically nearby to make communications as efficient as possible. Your audience, however, might experience a delay if they are located a significant distance away from the server.

If your pages use significant processing resources, your server might also be under heavy load by serving those assets to the user.

Consider using a CDN (content delivery network) to mirror your content on servers located geographically as close to your users as possible. A distributed network of servers helps significantly reduce the loading time of all static assets, including images and fully cached pages. If there’s a need for uncached content (comments, a shopping cart, a login status), adapt your caching to just serve the dynamic data from your server, while serving the rest from a CDN.

A CDN will also optimize your code and serve your data using modern protocols like http/2 to speed up the delivery of multiple assets and simultaneous requests.

   The browser
-------------

The performance of your website in a user’s browser depends on a variety of factors: The size and make-up of your HTML, the number of external resources and their loading order, how many CSS files are loaded, how they are parsed, and the number and loading order of external JavaScripts. Images and JavaScript are the most significant contributors to the page weight for most of the Top 1000 sites examined by [this study](https://paulcalvano.com/index.php/2018/07/02/impact-of-page-weight-on-load-time/) in 2018.

It is typically a significant task to reduce the amount of JavaScript used on a site and, where possible, to implement a CSS-only approach. There are other steps, for example reducing the size of images, that you can implement quickly. Adding a service to use an API, such as [tinify](https://tinypng.com/developers/reference), to minimize the file sizes of images on your pages is an easy task for your developers. Where possible, change the image tags in your HTML to formats like WebP (a CDN might also do this for you out of the box). And while you’re at it, consider rendering multiple versions of your images in the dimensions used for each breakpoint.

At b13, we try to solve front-end challenges without the use of JavaScript first. If possible, we use CSS to add features such as an accordion, a tab container or a slider element type to a front-end template without sacrificing ease of use or design requirements. If there is a need for JavaScript, we choose Vanilla JavaScript before going to frameworks. While jQuery is easy to use for developers, it can impact performance.

One example of making loading times as efficient as possible is handling the lazy-loading of images. Loading images only if and when they become visible in the viewport area of the user’s browser will speed up loading times of your webpages. There are a number of different implementations using jQuery or other frameworks that promise to be a plug-and-play solution to the lazy-loading of images. This is certainly handy and easy to use, but it requires that you add a library of code you don’t need. A small block of JavaScript (around 500 bytes) can accomplish the same thing without using additional resources or introducing dependencies that could affect your project.

There are other tasks to consider when optimizing the front-end performance of your website: Reduce the number of custom fonts, use SVGs instead of Icon fonts, inline critical or page-specific CSS to reduce your sites “main” CSS file size. Check out our solutions and best-practices to help optimize your pages.

   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. And continue testing once the final content is in.

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

Benni Mack, my colleague and business partner for 15 years, recently said: “Treat a slow website as a bug.” If you get complaints from your users, experience delays, see unexpected bounce rates or just have the suspicious feeling that your site is getting slower, do a performance audit. Start at the server level and work your way 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 where you can improve. We can work with your developers or agency to demonstrate how we use Blackfire, optimize image loading, configure a CDN for your website, or work to improve the performance 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)
- ![Colorful cartoon rockets with flames, featuring round windows and various designs, are arranged in a repeating pattern against a light background.](https://b13.com/fileadmin/_processed_/9/f/csm_QuickLoad_Headerbild_914e5cfa94.webp)

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

     30 April 2025 | David Steeb

     Explore practical solutions to improve website load times and performance through server, network, and front-end optimizations, including TYPO3-specific strategies.

     [ Read more: What factors make a website load as quickly as possible? ](https://b13.com/knowledge/make-website-load-fast)
- ![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)
- ![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)
- ![Two figures interact with a computer displaying a fluctuating graph. One figure holds a large wrench, while the other points at the screen. The background features gears and various technical elements, suggesting a theme of engineering or data analysis.](https://b13.com/fileadmin/_processed_/a/2/csm_blackfire_pt2_68c9f99e2f.webp)

    ###  Blackfire, Part 2: Set (and Surpass) Your Website’s Performance Baselines

     09 February 2021 | Benni Mack

     Once you’ve gotten the hang of using Blackfire, you can do even more to speed up your website. Add tests, baselines, targeted sub-profiles, and more.

     [ Read more: Blackfire, Part 2: Set (and Surpass) Your Website’s Performance Baselines ](https://b13.com/knowledge/blackfire-part-2-set-and-surpass-performance-baselines)