About this site's font
Thu, 08 May 2008 12:26:09 +0000 - Author: Peter O.
This site uses an embedded OpenType font (the Diamond and Pearl text font) which is achieved using CSS. It will work in Internet Explorer and more recent versions of Firefox. Here is the CSS code that embeds the font into my site's pages:
http://upokecenter.com/include/pdfont.eot http://upokecenter.com/include/pdfontb.eot
There are two versions, the normal weight and the bold weight.
To embed your own fonts, you should use a tool called "Weft" (search the Web for "weft web font embedding").
@font-face {
font-family: "Pokemon DP";
font-style: normal;
font-weight: normal;
src: url(/include/pdfont.eot);
}
@font-face {
font-family: "Pokemon DP";
font-style: normal;
font-weight: bold;
src: url(/include/pdfontb.eot);
}
The "src" rule above refers to the location of the embedded OpenType font, in this case,
at:http://upokecenter.com/include/pdfont.eot http://upokecenter.com/include/pdfontb.eot
There are two versions, the normal weight and the bold weight.
To embed your own fonts, you should use a tool called "Weft" (search the Web for "weft web font embedding").