The entire page finishes rendering in 266 ms for me.
Here is a speed test of your website that shows an even lower value:
Note that geographic location matters too. Our servers are in the UK, so people in Europe will see better performance than people on the other side of the planet due to the limitations of physics.
the website loaded in less then a second for me fully, are you sure the tests were correct? on what device and browser where you testing on, whats your internet speed?
I didn’t experience slowdowns, either. It really depends on the network speed of your Internet connection and your current geolocation.
If you’re desperate and you have plenty of time, you can optimize the site even further to squeeze out more performance. The results from PageSpeed Insights already provided some necessary information, tips and common solutions for your problem. You can also try GTMetrix for better results. I know you’ve tried to apply some of the optimizations listed in the PageSpeed Insights. That’s great but it’s not enough for your current situation.
Suggestions
Overall Optimizations
Reduce the file size of each asset. Minify and/or compress each asset.
Prioritize CDN. Replace your own self-hosted Bootstrap file links with the ones being provided by any CDN service.
Image-specific Optimizations
Apply compression.
Preload images.
Implement lazy loading.
Adjust dimensions of the image depending on the user-agent or the viewport.
Use next-gen image formats such as webp. Fallback to jpg or png when unsupported.
Stylesheet-specific Optimizations
You need to re-prioritize some of the assets. All secondary assets should be loaded once all of the primary assets were finally loaded.
For secondary stylesheet/s, use this snippet as a template:
<link rel="preload" as="style" href="{{ LINK }}" onload="this.rel='stylesheet'">
Bootstrap icons
Google Fonts
Javascript-related Optimizations
For secondary script/s:
<!-- For scripts that do not require any specific order -->
<script async href="{{ LINK }}"></script>
<!-- Any other script should be "deferred"! -->
<script defer href="{{ LINK }}"></script>
After the inspection of main.js file, I noticed that the webpage came from a specific template. The code has been optimized by the original developers. You can apply micro-optimizations on the code but only small performance benefit can be gained from it. It’s not worth it.