load the icons
<head>
...
...
<script>
// async-load a stylesheet full of data-uri'd icons...
(function( href ){
links = document.getElementsByTagName( "link" ),
elem = document.createElement( "link" ),
ref = links[ links.length ];
elem.href = href;
elem.rel = "stylesheet";
ref.parentNode.insertBefore( elem, ref );
}( "css/icons.css" ));
</script>
<noscript>
<link href="css/icons.css" rel="stylesheet">
</noscript>
...
</head>