今日学习:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
</head>
<body>
<form acyion="" method="" name="">
文本框
<input type="text">
<br>
密码框
<input type="password">
<br>
数字
<input type="number">
<br>
日期
<input type="date">
<br>
<hr>
单选
<input type="radio" checked name="is marry">未婚
<input type="radio" name="is marry">已婚
<br>
复选
<input type="checkbox" >跑步
<input type="checkbox" >睡觉
<input type="checkbox" >玩游戏
<hr>
<br>
提交与重置按钮
<br>
<input type="reset" value="提交">
<br>
<input type="reset" value="重置">
<br>
<button>按钮</button>
<hr>
文件
<input type="file">
<br>
<input type="hidden" value="银行卡密码">
<hr>
<br>
姓名:
<input type ="text">
<br>
<label for="name2">姓名2:</label>
<input type="text"id="name2">
<br>
<label>姓名3:
<input type="text">
</label>
<hr>
文本域
<textarea name=""id=""cols="50" rows="5"></textarea>
<hr>
<label>下拉
<select name=" " id=">">
<option value="">香蕉</option>
</form>
</body>
</html>
结果是: