How To Optimize Website Performance.

Read the below articles to learn more about various website speed optimization techniques.

Enable Gzip compression

Reduce the size of your web files by an average of 60-70% by enabling GZIP compression.

Optimize CSS delivery

Optimize CSS delivery for faster page rendering by inlining, defer loading, compressing and learning what to do and what not to do.

Defer load CSS

Defer load low priority CSS scripts to render your web pages quicker by loading them after the important above-the-fold CSS has loaded.

Leverage Browser Caching

Leverage browser caching to speed up your website. Learn about the other various methods to enable caching server side and client side.

Defer Load Javascripts

Defer load your Javascript files to improve page load times.

Inline CSS scripts

Instantly render your CSS by calling it from the HTML head. Avoid the use of render-blocking CSS scripts.

Make fewer HTTP requests

Make fewer HTTP requests to minimize parallel downloads by reducing the amount of files your web pages load to a minimum.

Use less Javascripts

Learn to detect and remove Javascripts your web pages don't necessarily need to correctly load your web pages.

Reduce amount of functional images

Reduce the amount of image files your web pages load by combining or replacing them.

Set up the critical rendering path

Set up the critical rendering path to optimize the initial above-the-fold view your visitors see when loading a web page.

Lazy load images

Lazy load images and instead only load them when the vistors is viewing them. This speeds up the loading of the above-the-fold content.

Optimize images

Optimize your images by reducing their file size to a bare minimum to speed your website up.

How to speed up WordPress

Optimize your WordPress website by using various plugins, tricks and methods.

Fix broken requests

Detect and fix all broken links, images and other files to improve performance. Broken requests can slow your web pages down.

Use the right hosting

Which type of hosting is best for speed but also low priced? Shared, VPS, dedicated or another type?

How to speed up Apache

Learn how to speed up a Apache server by tweaking its settings and using free applications.

Inline Javascript code

Inline your (smaller) Javascripts to improve page load times.

Don't use CSS @import

Avoid using CSS @import to load external CSS files to avoid slowing your web page down.

Use asynchronous scripts

Load your scripts asynchronously to improve page load times.

Avoid Javascript libraries

Avoid loading big Javascript libraries like Jquery for smaller functions.

Use a CDN

Use a Content Delivery Network to provide your visitors with the fastest response & download times.

Enable keep-alive

Make sure you have keep-alive enabled to allow multiple browser connections without using multiple TCP connections.

Avoid redirects

Avoid using unnecessary redirects, stop them from slowing your website down.