标签:put 重置 TE checkbox tar html check style mit
1.表格
<table>
<th>表格标题</th>
<tr>
<td></td>......<td></td>
</tr>
......
</table>
2.列表
(1)无序列表
<ul>
<li>......</li>
......
</ul>
(2)有序列表
<ol>
<li>......</li>
......
</ol>
(3)表单
<form>
<input type="......" name="......">(type种类:text,password,radio,checkbox)
<select name="......">
<option value="......"></option>
......
</select>
备注
<textarea name="......">
</textarea>
按钮
<input type="......" value="......">
(类型有:
1.重置reset
2.提交submit
3.普通按钮button)
</form>
标签:put 重置 TE checkbox tar html check style mit
原文地址:https://www.cnblogs.com/xunlu/p/9126112.html