What's the correct order to load fonts in?
问题 Paul Irish suggests that the 'bullet proof' way to load fonts is to render EOT first, followed by WOFF , TTF , and lastly SVG . @font-face { font-family: 'Tagesschrift'; src: url('tagesschrift.eot'); /* IE 5-8 */ src: local('☺'), /* sneakily trick IE */ url('tagesschrift.woff') format('woff'), /* FF 3.6, Chrome 5, IE9 */ url('tagesschrift.ttf') format('truetype'), /* Opera, Safari */ url('tagesschrift.svg#font') format('svg'); /* iOS */ } Source: http://www.html5rocks.com/en/tutorials