标签用于为用户输入创建 HTML 表单。
表单能够包含 input 元素,比如文本字段、复选框、单选框、提交按钮等等。
表单还可以包含 menus、textarea、fieldset、legend 和 label 元素。
表单用于向服务器传输数据。
实例:
1:文本域 text
<html>
<body>
<form>
姓:
<input type = "text" name = "firstname">
<br />
名:
<input type = "text" name = "lastname">
</form>
</body>
</html>
2:密码域 password
3:复选框 checkbox
4:单选框 radio
<html>
<body>
<form>
男性:
<input type="radio" checked="checked" name="Sex" value="male" />
<br />
女性:
<input type="radio" name="Sex" value="female" />
</form>
<p>当用户点击一个单选按钮时,该按钮会变为选中状态,其他所有按钮会变为非选中状态。</p>
</body>
</html>