Delay loading own font

0

I have a source hosted on my server on my website and a few weeks ago I realized that in Chrome, once loaded all the content of the page, it takes less than a second to load the source. Is there a way to optimize the load and that there is no delay?

The source is loading it by CSS as follows:

@font-face {
    font-family: 'webfont';
    src: url('/global/fonts/webfont-regular-webfont.eot');
    src: url('/global/fonts/webfont-regular-webfont.eot?#iefix') format('embedded-opentype'),
    url('/global/fonts/webfont-regular-webfont.woff2') format('woff2'),
    url('/global/fonts/webfont-regular-webfont.woff') format('woff'),
    url('/global/fonts/webfont-regular-webfont.ttf') format('truetype'),
    url('/global/fonts/webfont-regular-webfont.svg#webfontregular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: fallback;
}

Here the demo:

And finally the website link

    
asked by tomillo 12.07.2018 в 19:02
source

0 answers