Skip to content

Instantly share code, notes, and snippets.

@fieldoffice
Created February 10, 2015 11:15
Show Gist options
  • Save fieldoffice/c07a23fa549928180bc0 to your computer and use it in GitHub Desktop.
Save fieldoffice/c07a23fa549928180bc0 to your computer and use it in GitHub Desktop.
Google Web Font Loader
<script type="text/javascript">
WebFontConfig = {
google: { families: [ 'Source+Code+Pro::latin' ] }
};
(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);
})(); </script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment