CSS 3 and @font-face
06 Nov 2009 by Steve
@font-face is a new CSS3 rule that links to a TrueType or OpenType font that is sitting on your server. @font-face {
font-family: Graublau Sans Web;
src: url(GraublauWeb.otf) format("opentype");
}
body {
font-family: Graublau Sans Web, Lucida Grande, sans-serif;
}
Source and extended information.

