html設置字體顏色的方法:1、在DW中新建一個html文件。2、用font標簽設置字體顏色。
具體操作步驟:
1、打開dw軟件,新建一個html文件。
2、在html文件中通常可以使用font標簽來設置字體的顏色。
font語法:
<font color="#FF0000">我是紅色字體</font>
html設置字體顏色完整代碼:
<!DOCTYPE html><html>
<head>
<meta charset="utf-8" />
<title>font字體顏色實例 DIVCSS5</title>
</head>
<body>
<font color="#FF0000">我是紅色字體</font>
<table width="300" border="1">
<tr>
<td><font color="#0000FF">你好</font></td>
<td>DIVCSS5</td>
</tr>
</table>
</body>
</html>