The link method allows you to combine several font requests with one call:
<link rel="stylesheet" type="text/css" href="http://fonts.googleapis.com/css?family=Droid +Sans|Lobster">
This simple trick saves callbacks on a Google server. Also, put your “link” call before any JS calls on your page.
Unfortunately, Internet Explorer has poor performance when one external CSS file is referenced by another using the @import directive. If it weren’t for performance issues, it would be nice to have the extra flexibility of placing @import in the same CSS file that uses fonts, but for best performance put the “link” tag in the base HTML file.
source
share