Font text"; 2. Use the style attribute in the label element containing the font text and add "color: Color value;" style; 3. Use id or class to introduce external CSS font color style to set the html font color, the syntax is "id or class selector {color: color value;}"."/> Font text"; 2. Use the style attribute in the label element containing the font text and add "color: Color value;" style; 3. Use id or class to introduce external CSS font color style to set the html font color, the syntax is "id or class selector {color: color value;}".">
Home > Article > Web Front-end > How to set font color in html
htmlHow to set font color: 1. Use the font tag, the syntax "font text"; 2. In the label element containing the font text Use the style attribute to add the "color: color value;" style; 3. Use id or class to introduce external CSS font color style to set the html font color, the syntax is "id or class selector {color: color value;}".
The operating environment of this tutorial: Windows 7 system, CSS3&&HTML5 version, Dell G3 computer.
Method 1: Use the font tag
to specify the font, font size, and font color of the text.
Syntax for setting font color:
<font color="颜色值">字体文本</font>
Example:
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> </head> <body> <div>我是默认黑色字体</div> <div><font color="red">我是红色字体</font></div> </body> </html>
Rendering:
##Method 2: Use the style attribute to add the "color: color value;" style
The style attribute specifies the inline style of the element. The style attribute will override any global style settings, such as those specified in theThe above is the detailed content of How to set font color in html. For more information, please follow other related articles on the PHP Chinese website!