My question is bit general , I have a website
So this is a single page website , Since it has large content the size of the website is increasing more than 98kb
which is according to specification much more than the limit and results into slower rendering .
Can any one suggest any plugin that I can apply on this to make it load Asynchronously .
Thanks
3
Answers
So based on the inspection I did on your site, I got these points:
You should put css files on top. there are two files which you should include on top.
http://fonts.googleapis.com/css?family=Raleway400,200
http://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.min.css
These should increase the performance of your website.
For plugins, there are many options which give you an insight about your site performance and suggestions to improve them but they won’t improve your site performance directly. For eg.
Best of Luck.
For me you have two huge problems:
There are numbers of possibilities which slow down your website
Web request
so you need to avoid useless requests.
FIX
You can use fontawesome in place of your icon images, you can also combined your images into single spritesheet.
Avoid render blocking
You can use CDN
Here is just an overview, there are many more things you need to do in order to make your website really faster.