When you type text in FrontPage, FrontPage places it inside <P>...</P> tags by default:
<p>This is an example.</p>
When you apply a font size to the text, the <FONT>...</FONT> tags are placed inside the <P>...</P> tags:
<p><font size="2>This is an example.</font></p>
When you apply a DHTML effect to the paragraph, the DHTML effect is not applied to any text inside the <FONT>...</FONT> tags:
<p dynamicanimation="fpAnimformatRolloverFP1" fprolloverstyle="font-size: 24pt"
onmouseover="rollIn(this)" onmouseout="rollOut(this)" language="Javascript1.2">
<font size="2>This is an example.</font></p>
When you apply the DHTML effect to text inside either the paragraph (<P>) or the heading (<H
n>) tags, and set the font size through the DHTML Effects dialog box, it is applied to the heading or paragraph tag, like this:
<h3 dynamicanimation="fpAnimformatRolloverFP1" fprolloverstyle="font-size: 24pt"
onmouseover="rollIn(this)" onmouseout="rollOut(this)" language="Javascript1.2">
This is an example.</h3>
Notice that this sample does not use the <FONT>...</FONT>tags.