4.字体标签
<html> <head> <title>字体标签</title> </head> <body> <h1>佑我中华</h1> <h2>佑我中华</h2> <h3>佑我中华</h3> <h4>佑我中华</h4> <h5>佑我中华</h5> <h6>佑我中华</h6> <hr/> <font face="隶书" size="1">佑我中华</font> <font face="华文行楷" size="2">佑我中华</font> <font size="6">佑我中华</font> <font size="10" color="red">佑我中华</font> </body> </html> <!-- 字体标签 h 标题标签 h1-h6 默认换行加粗 font(了解) 字体 常用的属性: face:字体 size:大小 color:颜色 -->