How to change the speed of load?

Hi
How i can change the speed of loading site?
Maybe my site have any mistakes in the script?
im using laravel 8
My site is
https://intervision.ua

far as i can tell from here, your server’s slow to hand off the data to the user. vendors.js is also calling 5 different subpages, which amplifies this load time.

Performance testing for websites… Utilize a content delivery network (CDN) Image optimization… Minify JavaScript and CSS files. If at all feasible, lessen the amount of HTTP requests. Use HTTP caching in your browser. Reduce the amount of outside scripts you use.

Using the Lighthouse tool within the developer tools of Google Chrome shows that the web page has 2467 DOM elements, nested up to 20 deep. It also reports other things that are slowing your page load.

No wonder you have so many DOM elements: a quick look at your page source code shows code like this:

</div>
</div>
</div>
</div>
</div>
</div>
</section>
</div>
</div>
</div>
</div>
</div>
<div class="mb-4">
<div class="container">
<div class="row gutters-10">
</div>
</div>
</div>
<div id="section_featured">
</div>
<div id="section_best_selling">
</div>

<div class="mb-4">
<div class="container">
<div class="row gutters-10">
</div>
</div>
</div>
<div id="section_home_categories">
</div>
<div id="section_best_sellers">
</div>
1 Like

The speed of loading a website is largely determined by the hosting provider and the type of server you are using. You can optimize your website for faster loading times by reducing the size of images, minifying HTML, CSS, and JavaScript files, and using a content delivery network (CDN). Additionally, you can use caching plugins to store static content on the user’s browser so that it doesn’t have to be downloaded every time they visit your website.