tags:

views:

35

answers:

0

Hi all,

I'm including server side fonts via css

@font-face {
font-family: "lucida";
src: url('LucidaAll/LBRITE.eot'); /* IE */
src: local("lucida"), url('LucidaAll/LBRITE.TTF'); format("truetype"); /* non-IE */
}

And Using this in <body> tag like

font-family:"Lucida Bright", Verdana, serif;

It works well for normal fonts. but not for bold & Italic fonts. Anyone know how to resolve this issue ?