Non-Standard fonts on web site @font-face
You can use CSS to embed non-standard fonts in web-pages. Here is a sample:
<style type="text/css">
@font-face {
font-family: Coldsmith;
src: url(/fonts/Coldsmith/ttf/Coldsmith.ttf) format("truetype");
}
</style>
and then just add
style="font-family: Coldsmith;"
to your <div> or <td> tag.
There's a good list of fonts you can embed in your web page for free here.


