Hello guys i have a website named www.atellier.in . which takes musch more time to load.

please suggest me to reduce load. please guys help me .

Thank you

    Well, for one thing, your page makes a LOT of separate HTTP requests. If you don't already have it, install the YSlow plug-in in Chrome, open your site there, then click the YSlow icon in Chrome's toolbar. This will give you all sorts of information. Once you address those issues, if it's still slow, then you might have to start looking on the server-side if it's slow DB queries or whatever.

      To load a page quickly:
      make the page markup as simple as possible
      don't reference a lot of scripts or images or other assets in the page

        You have more JavaScript tags in there than a crazy cat lady has kittens. Those are probably blocking rendering. Maybe async most of them?

        <script type='text/javascript' async src-'http://atellier.in/wp-includes/js/wp-a11y.min.js?ver=4.8'>

        Inspecting Network on that showed lots of them being over 1000ms each ... probably 'cause the server's in India?

          Write a Reply...