Improve Web Page Performance

Issue

How to improve the web page performance.

Impact

Increase rendering performance.

Recommendations

Enable gzip compression

Compressing javascript resources with gzip could reduce their transfer size by about two thirds.

Optimize the order of styles and scripts:

External CSS files were included after an external JavaScript file in the document head. To ensure CSS files are downloaded in parallel, always include external CSS before external JavaScript.

Put CSS in the document head

CSS in the document body adversely impacts rendering performance