Dynamic Font Authoring


What are the tags required for using dynamic fonts?
Here is an example of a FONT FACE tag that you might put in an HTML document.
<FONT FACE="Meera" SIZE=6>
This text appears in Meera.
</FONT>

Here is an example of a LINK tag, which you put between the <HEAD> and </HEAD> tags at the top of an HTML document:

<LINK REL=FONTDEF SRC="http://www.yourdomain.com/Meera.eot">
The REL attribute indicates that the linked file is a font definition. The SRC attribute specifies the source for the font definition, in this case the PFR (Portable Font Resource).

Tips:
Use CSS instead of using indvidual font declarations.