Css Yöntemiyle basit bir şekilde olabilir

Şöyle ;

<style>
@font-face {
font-family: "font name";
src: url("http://www.siteniz.com/font_file_name.ttf");
}
.classname {
font-family: "font name";
}
</style>

bu $ekil..

Örnek:

<font color="#000000" size="1" face="font name">text using special font</font>


or:

<p class="classname">text using special font</p>


or using OpenType (which not all fonts work with):

<link rel="fontdef" src="fontname.prf" />


and then use

<font face="fontname"/>