<font face="">

Browser
  • IE
  • Cr
  • Sf
  • Fx
  • O
Type

The face attribute of the FONT element specifies the font face of the text.


<font face="Times New Roman">font face</font>

Attribute Value Explanation
face=" " font name the list of the font names

The font is specified by the font family names.

The use of this element is deprecated. (Use CSS instead)

The list of the fonts

If you specify two or more fonts, separate by a comma.

<font face="Font1, Font2, Font3">font face</font>

When Font1 cannot be used in the user's computer, Font2 is used.

Example


<p>Default font</p>
<p><font face="Century Gothic, Arial">TAG index Web Site</font></p>
<p><font face="Century, Times New Roman">TAG index Web Site</font></p>
<p><font size="6" color="#ff0000" face="Impact">TAG index Web Site</font></p>

Output

Default font

TAG index Web Site

TAG index Web Site

TAG index Web Site