表单标签
将页面上录入的信息传递到服务端
需要设置name属性;
静态数据:不能和用户进行动态交互的数据;
动态数据:可以和用户以及服务进行交互的数据;
账户:input标签 type="text" value:默认值 placeholder:提示
密码:input标签 type="password" value:默认值 placeholder:提示
性别:input标签 type="radio" checked:默认选中 value:默认值
地址:select标签,单选框 ,option标签,下拉框 selected:默认选中
爱好:input标签 checkbox
介绍: textarea标签,文本
提交:input标签 type="submit"
重置 :input标签 type="reset"
<body>
<form>
账户:<input type = "text" name="username"/><br/>
密码:<input type="password" name="password"/><br/>
性别:<input type="radio" name="sex" value="male" checked="checked">男
<input type="radio" name="sex" value="female">女
<br/>
地址:<select name="city">
<option value="beijing">北京</option>
<option value="shanghai" selected="selected">上海</option>
</select><br/>
爱好:<input type="checkbox"name="h" checked="checked"/>篮球
<input type="checkbox" name="h" value="music"/>音乐
<input type="checkbox" name="h"/>跑步<br/>
照片:<input type="file" name="phone"/><br/>
介绍:<textarea name="introduce" placeholder="自我介绍"></textarea><br/>
<input type="submit"/>提交
<button type="reset"/>重置
</form>
</body>