CubaMark
Apr 17th, 2004, 10:02 PM
:( I'm throwing together a little website for a friend's new business, and want to maintain a typeface throughout that is not likely to be commonly installed on visiting computers.
I've found a website that describes two methods (for the IE crowd and then for Netscape):
</font><blockquote>code:</font><hr /><pre style="font-size:x-small; font-family: monospace;">You need to download software to create an embedded font file which can be in two formats .pfr or .eot.
? Portable Font Resources (.pfr):
TrueDoc for Nav 4.0+ and IE 4.0+ on Windows, Mac, and Unix platforms. Download from http://Bitstream.com
? Embeddable Open Type[/b] (.eot):
Compatible only with Explorer 4.0+ on the Windows platform.
Download from http://www.microsoft.com/typography/web/embedding/weft3/default.htm
2. Next we need to embed the file using CSS.
Into the HEAD section of your document insert:
Example with True Type
<link rel = "fontdef" src="cool-font.pfr">
To work in IE4 and above, you need to add a pointer to an ActiveX control immediately after the LINK tag OR ELSE
create an OpenType file for Explorer and refer to both on your page.
TrueDoc fonts stay within the browser: you can't download them to your system
Example with Open Type
<STYLE TYPE="text/css">
<--!
@font-face {
src:url(fonts/cool-font.eot);
}
-->
</STYLE></pre>[/QUOTE]Anybody know offhand whether this works for Safari / Mozilla / etc. as well, and/or other methods that will achieve the same end? How do you design folk make this work, without converting all of your text to GIFs or PNGs?
M.
[ April 17, 2004, 10:14 PM: Message edited by: CubaMark ]
I've found a website that describes two methods (for the IE crowd and then for Netscape):
</font><blockquote>code:</font><hr /><pre style="font-size:x-small; font-family: monospace;">You need to download software to create an embedded font file which can be in two formats .pfr or .eot.
? Portable Font Resources (.pfr):
TrueDoc for Nav 4.0+ and IE 4.0+ on Windows, Mac, and Unix platforms. Download from http://Bitstream.com
? Embeddable Open Type[/b] (.eot):
Compatible only with Explorer 4.0+ on the Windows platform.
Download from http://www.microsoft.com/typography/web/embedding/weft3/default.htm
2. Next we need to embed the file using CSS.
Into the HEAD section of your document insert:
Example with True Type
<link rel = "fontdef" src="cool-font.pfr">
To work in IE4 and above, you need to add a pointer to an ActiveX control immediately after the LINK tag OR ELSE
create an OpenType file for Explorer and refer to both on your page.
TrueDoc fonts stay within the browser: you can't download them to your system
Example with Open Type
<STYLE TYPE="text/css">
<--!
@font-face {
src:url(fonts/cool-font.eot);
}
-->
</STYLE></pre>[/QUOTE]Anybody know offhand whether this works for Safari / Mozilla / etc. as well, and/or other methods that will achieve the same end? How do you design folk make this work, without converting all of your text to GIFs or PNGs?
M.
[ April 17, 2004, 10:14 PM: Message edited by: CubaMark ]