### h 標題標簽
共有6個級別,n的范圍1~6,不同級別對應顯示大小不同的標題,h1最大,h6最小
### font 字體標簽
* size(字體大小)
```
<font size="14px">
```
* color(顏色)
```
<font color="red">
```
* face(字體)
```
<font face="微軟雅黑">
```
### b粗體標簽 i斜體標簽 u下劃線標簽
~~~
<b>加粗</b>
<i>斜體</i>
<u>下劃線</u>
~~~
顯示效果

### 上下標
~~~
2<sub>3</sub>
2<sup>3</sup>
~~~
顯示效果

### cite 引用字體標簽
引用方式的字體,通常是斜體
~~~
<cite>引用</cite
~~~
顯示效果

### em 斜體強調標簽
~~~
<em>強調</em>
~~~
顯示效果

### strong 加粗強調標簽
~~~
<strong>強調</strong>
~~~
顯示效果

### small小型字體標簽 big大型字體標簽
~~~
<small>小型字體標簽</small>
<small><small>小型字體標簽</small></small>
<big>大型字體標簽</big>
<big><big>大型字體標簽</big></big>
~~~
顯示效果
