<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
</head>
<body>
label 也是没有实际意义的标签 属于行内元素
经常和input 进行搭配
按钮三种形式:
button 按钮
submit 提交 配合form使用,action="我要提交的一个服务器地址"
reset 重置
属性值:禁止点击 disabled
size 控制方框长短,单位是像素 px
--!>
<form>
<label>账号:</label><input name="iphone" type="text" value="我是默认值" placeholder="会员/邮箱/手机" maxlength="5"/>
<label>密码:</label><input name="password" type="password" placeholder="请输入您的密码"/>
<label>性别:</label>
<label>男:</label><input name="gender" type="radio" checked />
<label>女:</label><input name="gender" type="radio" />
<label>爱好:</label>
<label>篮球:</label><input name="gender" type="checkbox" checked />
<label>乒乓球:</label><input name="gender" type="checkbox" />
<label>橄榄球:</label><input name="gender" type="checkbox" />
</form>
</body>
</html>