I have a web application that is using CSS3\'s @font-face to embed custom fonts. So far this has works perfectly in IE and Firefox.
With Chrome, however, the custom fo
For me, best worked:
@font-face { font-family: MyFont; src: url("MyFont.ttf") format('truetype'); } h1 { font-family: MyFont; -webkit-text-stroke: 0.5pt; -webkit-font-smoothing: antialiased; }