表格
行 <tr>
列 <td>
跨行 <td rowspan="跨行数">
跨列 <tr colspan="跨列数">
内联框架
<iframe src="" name=""></iframe>
name:框架标识符
表单
form action="" method="[post/get]"
文本框:input type="text"
密码框:input type="password"
单选框:input type="radio"
多选框:input type="checkbox"
按钮:input type="button"
下拉框:select name=""
option value=""
滑块:input type="range" max="" min=""
搜索框:input type="search"
提交:input type="submit"
重置:input type="reset"
文本域:textarea
文件域:input type="file"
URL验证:input type="url"
增强鼠标可用性:label for=""----input id=""
。。。