Forum Moderators: open
Thanks
The font is Lucida Console.
The trick here is the CSS code
@font-face {
font-family: Chris Pirillo;
font-style: normal;
font-weight: normal;
src: url(http://chris.pirillo.com/CHRISPI1.eot);
This designates an embedded font called "Chris Pirillo" which is defined in the file CHRISPI1.eot. This .eot file was created using the Microsoft Web Embedding Font Tool [microsoft.com] (WEFT), which IIRC is based on OpenType [microsoft.com]. As far as I know, this is a Microsoft-only extension. Netscape 4 supported a different proprietary technology for embedded fonts called TrueDoc (extension .pfr, in coordination with Adobe and Bitstream).
Due to bandwidth and security concerns, potential copyright issues, the complication of designing a typeface and creating the font file, and of course the great browser divide, embedded fonts never became mainstream. Internet Explorer may retain WEFT support for backward-compatibility, but I couldn't find any mention at any standards body, and Mozilla nd Netscape 6+ do not appear to support either type of downloadable font.
@font-face {
font-family: Chris Pirillo;
font-style: normal;
font-weight: normal;
src: url(http://chris.pirillo.com/CHRISPI1.eot);
}
It takes some extra download time to embed a font, and from what I can see, only Explorer has support (makes sense, since MS created the technology.) It's also pretty rare because of a dicey copyright situation with the font designers. Of course, Chris owns his font, so he's in the clear.
Lots of good info about this in an earlier thread here:
HTML Fonts [webmasterworld.com]
<added>
Nice going, choster. I type too slow, I guess!
</added>
Though the copyright says 1997... Netscape 4.7?
[added]The test page [developer.netscape.com] - appears to _NOT_ work in Mozilla 1.3[/added]