Skip to content

Instantly share code, notes, and snippets.

@laras126
Created April 9, 2011 19:56
Show Gist options
  • Select an option

  • Save laras126/911716 to your computer and use it in GitHub Desktop.

Select an option

Save laras126/911716 to your computer and use it in GitHub Desktop.
load webfont
<?php
// Load WebFont
function gfonts_api($gf1) {
$addfont = <<<ADDFONTS
<script type='text/javascript' src='http://ajax.googleapis.com/ajax/libs/webfont/1/webfont.js'></script>
<script type='text/javascript'>WebFont.load({ google: {families: [ '$gf1' ]}})</script>
<style type='text/css'>#blog-title {font-family: '$gf1', serif;}</style>
ADDFONTS;
echo $addfont;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment