Home > Article > Web Front-end > HTML tag
Tags Learn:
html tutorial )
240cb830ca84ebaabbd07850110b414d Specifies the font, font size, and font color of the text.
All major browsers support the 240cb830ca84ebaabbd07850110b414d tag. Differences between HTML and XHTML
In HTML 4.01, the font element is deprecated. In XHTML 1.0 Strict DTD, the font element is not supported.
Example
Specify text font, size and color:
<html> <body> <h1><font face="verdana">A heading</font></h1> <p><font size="5" face="arial" color="red">A paragraph.</font></p> </body> </html>
The above is the detailed content of HTML tag. For more information, please follow other related articles on the PHP Chinese website!