Home > Web Front-end > Front-end Q&A > How to set font color in html

How to set font color in html

青灯夜游
Release: 2023-03-08 10:04:26
Original
22447 people have browsed it

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;}".

How to set font color in html

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>
Copy after login

Example:

<!DOCTYPE html>
<html>
	<head>
		<meta charset="utf-8">
	</head>
	<body>
		<div>我是默认黑色字体</div>
		<div><font color="red">我是红色字体</font></div>
	</body>
</html>
Copy after login

Rendering:

How to set font color in html

##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 the