html顏色代碼怎么編寫(xiě)?
在HTML中font標(biāo)簽即可對(duì)字體內(nèi)容設(shè)置顏色。
1、font語(yǔ)法:
<font color="#FF0000">我是紅色字體</font>
首先f(wàn)ont是一對(duì)常規(guī)標(biāo)簽,將字體文本內(nèi)容放入標(biāo)簽內(nèi),font標(biāo)簽內(nèi)設(shè)置color顏色+對(duì)應(yīng)顏色值即可設(shè)置font標(biāo)簽對(duì)象內(nèi)字體顏色。
2、html font設(shè)置字體顏色實(shí)例完整代碼
<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <title>font字體顏色在線實(shí)例 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>