views:

77

answers:

1

Which font types i will need in @face-font and how to to make font smoother in all browser like sIFR?

IE 6, IE 7, IE 8, Firefox 3+, Google Chrome and Safari (MAC)

Which font type i needed

alt text

A: 

You're using font-squirrel, so you should be uploading an OpenType font. You can also upload a TTF SVG you can untick as that's for iPhone support. Depending on the kerning, you may want to add:

filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=UserSubmitted/fonts/hIEfix.png,sizingMethod=crop); zoom:1;

to your CSS declaration for the place you're using the font to enable/disable cleartype rendering, which makes some PC fonts look great and some look awful, depending on the individual font's hinting.

You should also be using the bulletproof (smiley varient) css invocation for best results and healthy syntax-based approach.

Identity
pls explain ur first paragraph in detail.
metal-gear-solid
okay: Opentype fonts based on our experiences tend to have more consistent hinting and character sets than the truetype fonts, and windows opentype fonts are usually a superset of a truetype font. I missed a "." after TTF and before SVG, but it doesn't hurt to leave SVG font support in for the iPhone OS.The filter is an IE-only (DirectX) which is triggered by zoom:1 (essentially a hasLayout equivalent), and efficiently provides an alpha channel for fonts which wouldn't otherwise use one. MS's language-based (eg. GDI, GDI+) font smoothing is mixed, so there's not a single use solution.
Identity
ok so which fonts u will suggest for me from this font list?
metal-gear-solid
I suggest the four font types you have ticked in the screenshot(this is somewhat out of the scope of the original question). If you're actually referring to fonts, then you could try fonts from fontfont, fontspring and other reputable, web-aware foundries. Generally speaking the more you pay for a font, the better hinting is.
Identity
no i'm refering to font-type
metal-gear-solid
then that's been answered.
Identity