Skip to content

Instantly share code, notes, and snippets.

@evanshajed
Created January 18, 2013 15:32
Show Gist options
  • Save evanshajed/4565346 to your computer and use it in GitHub Desktop.
Save evanshajed/4565346 to your computer and use it in GitHub Desktop.
JavaScript Snippets for Google Web Font Loader
/* Google Font Loader */
WebFontConfig = {
google: { families: [ 'Ubuntu+Condensed::latin' ] } //place your font name within ['...']
};
(function() {
var wf = document.createElement('script');
wf.src = ('https:' == document.location.protocol ? 'https' : 'http') +
'://ajax.googleapis.com/ajax/libs/webfont/1/webfont.js';
wf.type = 'text/javascript';
wf.async = 'true';
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(wf, s);
})();
/* End of Font Loader */
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment