i am trying to use Google font Muli in my website. i can see font is working in chrome,FF and opera perfectly.
when i am opening my website in IE9,10,11 its not at all taking font. i have tried following methods but still no luck.
Method 1 :
<script type="text/javascript">
WebFontConfig = {
google: { families: [ 'Muli::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>
Method 2 :
<link href='http://fonts.googleapis.com/css?family=Muli' rel='stylesheet' type='text/css'>
Method 3 :
@import url(http://fonts.googleapis.com/css?family=Muli);
I found something shocking is, IE is not at all loading http://fonts.googleapis.com/css?family=Muli
url. i have tried loading same url in new window and its not responding but same is working in other browsers.
Is there anything do i need to include to work it in IE?