标题
<h1> </h1>
<h2> </h2>
<h3> </h3>
<h4> </h4>
<h5> </h5>
<h6> </h6>
<p>段落</p>
换行
水平线
超链接
<a href="https://www.baidu.com/">链接文本</a>
<a href="mailto:obel.li@smartac.co">发送e-mail</a>
<a href="###">未定义地址</a>
<a href="javascript:void(0)">当button使用</a>
<a href="#id_or_name">滚动到id/name的部分</a>
无序列表
<ul>
<li>item</li>
<li>item</li>
</ul>
有序列表
<ol>
<li>item1</li>
<li>item2</li>
</ol>
表单标签
<form action="localhost:8081" method="post/get">
<input type="text">
<input type="password">
<input type="checkbox" checked="checked">
<input type="radio" checked="checked">
<select>
<option selected="selected">item1</option>
<option >item2</option>
<option>item3</option>
</select>
<textarea></textarea>
<input type="submit" value="Send">
<input type="hidden">
</form>
网友评论