font family declaration
by Shishir Morshed
HTML
<!-- https://www.dropbox.com/s/o8u5tpi81g5xm88/fonts.zip?dl=0 -->
<!-- @import url(//fonts.googleapis.com/css?family=Open+Sans); -->
CSS
@font-face {
font-family: 'MyWebFont';
src: url('webfont.eot'); /* IE9 Compat Modes */
src: url('webfont.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
url('webfont.woff2') format('woff2'), /* Super Modern Browsers */
url('webfont.woff') format('woff'), /* Pretty Modern Browsers */
url('webfont.ttf') format('truetype'), /* Safari, Android, iOS */
url('webfont.svg#svgFontName') format('svg'); /* Legacy iOS */
}
body {
font-family: "MyWebFont", "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif;
}