How to optimize website speed and performance by using free tools

Developing a website is not enough these days. Even developing an “awesome looking” website is not only going to serve your purpose unless it loads faster and rank better on Google.

In an earlier post I discussed how you can use free SEO Tools to rank better on Google but Google’s core search algorithm has been evolving continuously and now they are also taking site speed into consideration. For that purpose they are relying on their own tool called Page Speed which helps you to figure out what Google thinks about your website.

The goal

The goal is: how a developer, a front-end developer/designer or.. even a backend developer like me can use free tools to optimize an existing website and make a prototype of it without any approval from THE BOSS and without requesting any external help.

I am only covering basic concepts rather than discussing UI/UX philosophy which is not purpose of this post. UI/UX.

Topics being covered

I am going to cover following:

  • How to use free development tools to create your workflow for minimizing CSS and Javascript files.
  • How to use free online tools to minify HTML, optimizing images.
  • How to use Google PageSpeed and WebpageTest to test our efforts.

Site Selection

Pakistan Govt Website

The site I selected for study was none other than Pakistan Govt’s Official Portal. Following are the reasons this site was best suited for my study:

  • It is using old web standards. No HTML5 and CSS3
  • Not Mobile friendly
  • Improper HTML structure
  • Multiple CSS and JS files
  • Uncompress Images
  • Not a WordPress website (Optimizing a WP site is like opening  a can of worms)

Usually Government websites sucks all over the world, for example, check the PageSpeed score of USA government website.

Mobile Friendly and PageSpeed Test

We are entering in 2017. Mobile users have already surpassed Desktop users. It’s quite obvious that you’d like to know whether your website is mobile friendly or not. Google provides a free tool called Mobile Friendly Test, use this to learn how your site renders on mobile devices. I gave Pakistan Government Portal a try and:

pakgovt-mobilefriendly

Ouch! that hurts. Beside showing a Big red about non-Mobile-friendly website, it also gives hint reasons of it. One of them is that viewport is not set. Let’s look into it first. Since I already downloaded required page and assets from the main website, I’d be making changes locally.

<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0">

The line above going to resolve viewport. Setting viewport lets the entire page gets adjusted as per the device currently rending it. I am also going to  make the site compatible with different IE versions prior to IE11 to render pages in Edge mode.

<meta http-equiv="X-UA-Compatible" content="IE=edge">

Ok so far so good. Let’s take a look what does PageSpeed says about the website. Well, not something good.

pageSpeed Insights

Only 53/100. More than bad.

If you read,Google is already suggesting the issues with your website and also providing ways to do it. It does not stop here, it fetches assets from your page like CSS/JS and Image files and minify and compress them and provide you to just use it but I’m not going to take this route and I’ll take care of it locally on machine.

Ok we can see what the issues are: Minifying JS and CSS files, make them merge to a single file and setting a proper font-size.

Gulp and Twitter Bootstrap

In order to make page mobile friendly, I am going to use Twitter Bootstrap framework that has already taken care lots of burden of developing mobile friendly pages. Though version 4 of TBS is available but like many I am still sticking with version 3. I’ll recommend same to you. The other tool I am going to introduce is Gulp. GulpJS helps you to automate your workflow and make you focus on your original work: development. Instead of wasting time minifying CSS/JS files, copying from one folder to other folder, all you can to setup gulp task file and let it do the stuff on your behalf. Gulp is a node module so you should have NodeJS installed locally on your machine. Setting up Gulp is not the part of this post and you may find some awesome tutorials online.

OK, so below is my gulp.js file:

var gulp = require('gulp');
var concat = require('gulp-concat');
var minifyCSS = require('gulp-minify-css');
var uglify = require('gulp-uglify');

gulp.task('default', function () {
    gulp.src('resources/css/*.css')
        .pipe(minifyCSS())
        .pipe(concat('style.min.css'))
        .pipe(gulp.dest('public/css'))
});

gulp.task('minify', function () {
    gulp.src(['resources/js/jquery-1.4.min.js', 'resources/js/jquery.imagerotator.1.0.min.js', 'resources/js/bootstrap.min.js', 'resources/js/site.js'])
        .pipe(concat('scripts.min.js'))
        .pipe(gulp.dest('public/js'))
});

After installing required node modules:: gulp, gulp-concat, minify and uglify, I am going to write my workflow that is, how tasks should act upon my JS and CSS files. I already copied required CSS and JS files from the website and put them in separate resources folder. Remember, your task is not to ruin existing site and codebase but to make a better one in parallel. I am putting assets in resources folder, gulp then copy it after a series of tasks into public folder which is then being referenced in HTML document.

The should be a default task and you may add other tasks. In default I am fetching ALL CSS files from resources/css and then minifying it and then merging ALL of them into a single CSS and copying into public/css folder. Now all this can be done manually as well like developers had been doing it earlier. Here, you don’t need to worry about all this. From terminal run gulp or gulp <taskname> command and it should execute related task. So for default I am running gulp which minify CSS and for JS I run gulp minify which minify JS files.

I am also creating a new index file, called index2.html and here I will write my mobile friendly HTML aided by Twitter Bootstrap.

CSS Gradients

If you visit the Pakistan Gov Website, you’d notice a gradient background in green and white. They are using an image file for the which is actually a 16 x 900 PNG file of size around 5.5K. Now CSS3 is here, you can achieve same result without using an image file. Do remember, my goal is to speed up website by eliminating as many HTTP requests as I can and optimize existing the remaining requests. now issue is, how do I generate the CSS as I am not a CSS Ninja neither I am designer. It’s also the goal not to disturb other people for my own experiment. I always try to find generators for different kind of stuff I do during development. Luckily some good chap made a tool that converts a gradient image into CSS gradient rules. Shoutout to Gradient Finder that this task quickly. In order to gradient appear across the site I did following:

html {
    height: 100%;
}

body {
    height: 100%;
    font-size: 12px !important;
    font-family: Arial, Helvetica, sans-serif;
    background: -webkit-linear-gradient(top, rgb(18, 89, 44) 0%, rgb(158, 188, 169) 18%, rgb(252, 253, 252) 32%, rgb(252, 253, 252) 100%);
    background: -o-linear-gradient(top, rgb(18, 89, 44) 0%, rgb(158, 188, 169) 18%, rgb(252, 253, 252) 32%, rgb(252, 253, 252) 100%);
    background: -ms-linear-gradient(top, rgb(18, 89, 44) 0%, rgb(158, 188, 169) 18%, rgb(252, 253, 252) 32%, rgb(252, 253, 252) 100%);
    background: -moz-linear-gradient(top, rgb(18, 89, 44) 0%, rgb(158, 188, 169) 18%, rgb(252, 253, 252) 32%, rgb(252, 253, 252) 100%);
    background: linear-gradient(to bottom, rgb(18, 89, 44) 0%, rgb(158, 188, 169) 18%, rgb(252, 253, 252) 32%, rgb(252, 253, 252) 100%);
}

here I am setting html height to 100% otherwise gradient will not appear. Unlike image which occupies a region expand height, you gotta need to set height to 100% or whatever the % are you looking for.

Responsive Image Rotator

The site is also using some jQuery plugin to rotate images on top. No issue with that but the issue is the code was put on top of the body which eventually becoming reason to load site slow since Javascript and CSS are blocking resources. Check below:

codemini

I have created a new JS file, named site.js and put that code in it. Also I optimized rotating images to reduce their sizes. Don’t go to any graphic designer or using Adobe Photoshop for the purpose, use free OptimZilla for the purpose.

Beside using Online tools, you should also install Browser Plugin to give you idea how your site renders on different screen size. I use Responsive Web Design Tester Chrome plugin for the purpose. Here’s the screenshot of it:
mobileinterface
As you can see, Google is not whining without a reason.

After making a few changes, I made an attempt to test it on Google Speed and this is what I got:

image10-min

85/100. Not bad but eventually it’d change as we’d move further. Since I don’t have access to Govt website, I am putting all changes up on my own server.

I restructured the HTML of entire page and put a few content just for sake of proof of concept. Once when you’re all done with your HTML changes, it’s good as it’s also recommended by Google to minify HTML. I used this tool for the purpose.

Enable compression via .htaccess

By writing this code in .htaccess file you can compress different types of files on your server to speed up further. Make sure .htaccess exist in root folder of your site

AddOutputFilterByType DEFLATE text/plain
AddOutputFilterByType DEFLATE text/html
AddOutputFilterByType DEFLATE text/xml
AddOutputFilterByType DEFLATE text/css
AddOutputFilterByType DEFLATE application/xml
AddOutputFilterByType DEFLATE application/xhtml+xml
AddOutputFilterByType DEFLATE application/rss+xml
AddOutputFilterByType DEFLATE application/javascript
AddOutputFilterByType DEFLATE application/x-javascript

<ifModule mod_gzip.c>
mod_gzip_on Yes
mod_gzip_dechunk Yes
mod_gzip_item_include file .(html?|txt|css|js|php|pl)$
mod_gzip_item_include handler ^cgi-script$
mod_gzip_item_include mime ^text/.*
mod_gzip_item_include mime ^application/x-javascript.*
mod_gzip_item_exclude mime ^image/.*
mod_gzip_item_exclude rspheader ^Content-Encoding:.*gzip.*
</ifModule

 

Result

Below is the PageSpeed score of both Mobile and Desktop

optimmobileoptimdesktop

 

 

 

 

 

Testing Performance

Google Speed gives you idea how good is your website doing visually or otherwise but Google Speed is not the end of the world neither you should kill yourself to get 100/100 score. I could resolve a few more things and could get 95+ score here but due to site and existing CSS structure it seemed difficult, neither it was the purpose.

Now I want to check how far my changes have made an impact. In order to see how good my site is loading, WebpageTest is the best tool available. On checking Official Website:

screen-shot-indicator-pak-gov-pk-min

Too much red. Now you can start getting idea what thing is going wrong. A big F  on receiving first byte. Look another screenshot of same page:

screen-shot-performance-pakistan-gov-pk-min

Around 10 seconds for the first time load. 10 seconds is too much in Internet world. The most recommended load time is 2seconds at max. The report link here gives you idea what thing is taking much time. Now detail view gives you more idea:

screen-shot-detail-pakistan-gov-pk-min

If you look at image above or much better on live report you can see that blocking JS and CSS loading right after HTML document which itself tool much time which makes sense that it’s heavier than mine. The issue is blocking JS and then image, it halted the entire thing and made it to load slow.

Now compare it with mine one:

screen-shot-optimized-detail

It took around 0.875s to load and as you can see in detail view. After the HTML document it loads rotator files. If you look at here in Waterfall view these files Pakistan_day2.jpg and PmYouthLogo.jpg taking 1219ms and 2187ms respectively where as while these images were optimized, in detailed view they indicate that are taking 626ms and 193ms respectively. Huge difference just because images were optimized.

Conclusion

That’s it here. I showed you how as a developer or designer you can optimize existing page and make it compatible with modern web standards. This is not enough here. There are many other reasons that a website can go slow and that are more related to backend infrastructure; Slow MySQL Queries, redundant database connections, not using CDN and Caching systems. There are many possibilities but that is a separate chapter and I will discuss backend optimization some day. Till then, enjoy this. The final optimized page can be seen here. I made a few visual changes like changed footer and navigation bar as I did not like the one on original page. For those who want to see uncompress HTML page can see here. The code be downloaded from here.

Is your website loading slow, willing to know what’s going on? I can help you in this regard. Just send me an email at kadnan (at) gmail (dot) com and I’ll try to help you out.

If you like this post then you should subscribe to my blog for future updates.

* indicates required