<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>熟悉常用标签</title>
</head>
<body>
<!--
h1 标题 :
h后面数字 取值范围: 1~6
-->
<h1>我是h1</h1>
<h2>我是h2</h2>
<h3>我是h3</h3>
<h4>我是h4</h4>
<h5>我是h5</h5>
<h6>我是h6</h6>
<h7>我是h7</h7>
<h233>我是h233</h233>
我是普通文本
<!--水平分割线-->
<hr/>
<p><b>我是段落一</b></p>
<p><i>我是段落二</i></p>
<p>我是段落三</p>
<p>我是段落四</p>
<hr/>
<!--
font 标签常用属性
color: 颜色
size : 改变字体大小 范围:1~7
face : 字体
<标签 属性的名称="属性的值">
-->
我是<font color="red" size="1" face="仿宋">font标签测试 size="1"</font><br/>
我是<font color="red" size="2" face="仿宋">font标签测试 size="2"</font><br/>
我是<font color="red" size="3" face="仿宋">font标签测试 size="3"</font><br/>
我是<font color="red" size="4" face="仿宋">font标签测试 size="4"</font><br/>
我是<font color="red" size="5" face="仿宋">font标签测试 size="5"</font><br/>
我是<font color="red" size="6" face="仿宋">font标签测试 size="6"</font><br/>
我是<font color="red" size="7" face="仿宋">font标签测试 size="7"</font><br/>
我是<font color="red" size="233" face="仿宋">font标签测试 size="233"</font>
</body>
</html>
![]()