Skip to content

Instantly share code, notes, and snippets.

@josephabrahams
Last active August 29, 2015 14:08
Show Gist options
  • Save josephabrahams/1162b11925b159cdb786 to your computer and use it in GitHub Desktop.
Save josephabrahams/1162b11925b159cdb786 to your computer and use it in GitHub Desktop.
Web Font Loader script
<!doctype html>
<html lang="en-US">
<head>
<title></title>
<meta charset="utf-8">
<script src="//ajax.googleapis.com/ajax/libs/webfont/1.5.3/webfont.js"></script>
<script>
WebFont.load({
custom: {
families: ['My Font']
},
google: {
families: ['Droid Sans', 'Droid Serif']
},
typekit: {
id: 'xxxxxx'
}
});
</script>
</head>
@josephabrahams
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment