UK[fɒnt] US[fɑ:nt]
n. Font; font; baptistery (located in a church, often made of stone); (same font and size) a set of typefaces
html font tag syntax
Function:Specify the font, font size, and font color of the text.
Note: Please use styles (instead of <font>) to define the font, font color, and font size of the text.
Note: In HTML 4.01, the font element is deprecated. In XHTML 1.0 Strict DTD, the font element is not supported.
html font tag example
<html> <body> <h1><font face="verdana">verdana字体</font></h1> <p><font size="5" face="arial" color="red">arial字体</font></p> </body> </html>
Run instance »
Click the "Run instance" button to view the online instance