I have tried various codes to embed custom font and finally following seems to work in FF & IE8 above. But it does not support in IE7.
@font-face {
font-family: 'xyzfont';
src: url('fonts/abc-font.eot?') format('eot'),
url('fonts/abc-font.woff') format('woff'),
url('fonts/abc-font.ttf') format('truetype');
}
h1, h2, h3, div span { font-family: 'xyzfont', Georgia, Arial; }
Any suggestion to make it more compatible (such as IE7) most welcome.