Skip to content

Instantly share code, notes, and snippets.

@mt3o
Created July 29, 2015 19:19
Show Gist options
  • Save mt3o/4767557b64cdd8c6d6d1 to your computer and use it in GitHub Desktop.
Save mt3o/4767557b64cdd8c6d6d1 to your computer and use it in GitHub Desktop.
Load google and awesome fonts asynchronously, without blocking rendering
<?php foreach ([
'http://fonts.googleapis.com/css?family=Alegreya+SC&subset=latin,latin-ext',
'http://fonts.googleapis.com/css?family=Lora&subset=latin,latin-ext',
'https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css'
] as $font){
?>
<link
rel="stylesheet"
href="<?=$font?>"
media="none"
onload="if(media!='all')media='all'">
<noscript>
<link rel="stylesheet" href="<?=$font?>">
</noscript>
<? }?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment