How can I improve website page speed?

Server and Web Hosting should be second priority first you must make a optimized website

Below are some points to consider while developing application to boost user experience and performance of your application.

  1. Minimizing HTTP Requests.
  2. Adding Expires or Cache control header resulting in loading most of the contents in browser from cache rather than reloading.
  3. Using Gzip/deflate compression for static and dynamic contents
  4. Avoiding inline CSS. so as to load initial page faster
  5. Using CSS on the top of the page
  6. Avoiding inline java script code.
  7. Putting java scripts at the bottom of the pages.
  8. Compressing JavaScript and CSS files.
  9. Building reusable components viz. CSS, java scripts, routines, etc. to maximize the reusability and minimize the code size.
  10. Cache the static contents viz. images, java scripts, CSS, etc. or deploy them on separate server(cookie less) for better performance (It reduces the waiting period of user and can start his/her work while static content gets loaded)
  11. Images are taking at least 80% of the total page load time. We optimize image size and using lazy loading concepts (on demand loading) for images so that will not block required content. We are reducing number of DOM elements in pages.
  12. Using minimum DOM elements in web pages.
  13. Avoiding unnecessary server responses viz. “404 Page not found”.
  14. URLs are meaningful & user friendly
  15. Explanatory HTML page titles
  16. Clear, descriptive Major headings
  17. Using tags like Emphasis (bold, etc.) carefully
  18. Avoiding @Import tag for CSS anywhere in website.
  19. Following W3C standards for HTML and CSS.

You can check your website performance with – PageSpeed Insights

Leave a Comment

Your email address will not be published. Required fields are marked *