The header in mozilla lab’s Bespin anouncement has a very nice antialized font put there with css (which is not a standard font). Anyone knows how did they do it?
Bespin Embedded 0.6 released! Now in two great flavors.
http://mozillalabs.com/bespin/2010/01/15/bespin-embedded-0-6-released-now-in-two-great-flavors/
They’re using the @font-face directive.
@font-face { font-family: "MuseoSans"; src: url(fonts/MuseoSans_500.otf) format("opentype"); }Then you can simply use the
font-familyas you would in any other css rule. This is only supported by a few browsers, since it is CSS3.ALA has a great article regarding CSS3 and font-face here.