块级标签
<!--块级标签:独占一行,不允许其他元素和自己同行-->
<!--标题-->
<h1></h1>
<h2></h2>
<h3></h3>
<h4></h4>
<!--水平-->
<hr/>
<!--换行-->
<br/>
<!--引用-->
<blockquote></blockquote>
<!--预格式:一般用于书写代码-->
<pre></pre>
列表
<!--有序列表 OL:OrderList,LI:ListItem-->
<!--无序列表 UL:UnorderList,LI:ListItem-->
<!--定义列表-->
dl:DefineList
dt标题:DefineListTitle
dd描述:DefineListDescription
组合标签
<figure>
<figcaption></figcaption>
</figure>
分区标签
<div></div>