表单,类==>样式,id==>唯一标识
单选框/复选框
文本输入框
留言板
表单
//input输入框属性值
+ type
+ radio
+ check
+ checked
//文本域留言板
textarea
+ cols/rows
<form id="app" action="#">
<!-- fieldset区域划分 -->
<fieldset>
<legend>基本信息</legend>
<div>
<!-- for的栏位唯一值 -->
<label for="#">名称</label>
<input type="text" id="">
</div>
</fieldset>
</form>
显式和隐式区别
<label for="">xxx</label>
//后接id用于改善用户体验