What are the ways to reduce page load time? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 7

What are the ways to reduce page load time?

How we can reduce page load time in Website???

13th Apr 2017, 6:17 AM
Prashant Kansal
Prashant Kansal - avatar
5 Answers
+ 19
Minimize HTTP Requests. ...Reduce server response time. ...Enable compression. ...Enable browser caching. ...Minify Resources. ...Optimize images. ...Optimize CSS Delivery. ...Prioritize above-the-fold content.
13th Apr 2017, 6:17 AM
Dev
Dev - avatar
+ 8
Use less javascript, when you can
13th Apr 2017, 6:22 AM
philipo
philipo - avatar
+ 5
@Dayve is mostly right. 1.put css together (with less or sass, u can separate css while still working on your website, but when u upload on the server, upload only one css file, this way the http request will be one instead of multiple request) 2.same with javascript files using technologies like grunt, gulp or webpack 3.minify your images also. 800×500 image loads faster than 4000×2500px 4 . Ajax can also be useful...
13th Apr 2017, 7:14 AM
G. keng
G. keng - avatar
+ 2
New HTTP version is also something we have to keep eyes on =)
13th Apr 2017, 6:40 AM
Geoffrey L
Geoffrey L - avatar
+ 1
Reduce image sizes, remove unnecessary widgets, HTTP compression, put CSS at the top and many more techniques for reducing page load time
13th Apr 2017, 7:02 AM
Born Engineer