Reputation: 542
Is there a difference when we use files that are already stored somewhere(like Google hosted libraries or fonts) than the ones that are stored on local servers for our web pages, like differences on performance perspective?
Upvotes: 1
Views: 536
Reputation: 5526
Yes, there are a few differences. In most of the scenarios, your page will load much faster because:
The scenario where you may want to host on your site is if you are serving content for countries where Google, Google's CDN or similar are blocked.
Upvotes: 2
Reputation: 138
Yes, these is small difference exists. Modern browsers has limit, for example: no more than 4 parallel downloads from one domain. So, if you will use fonts from Google CDN servers, it possible, page will load little bit faster.
Upvotes: 1