学生档案案例

<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<title>Document</title>
</head>
<body>
	<form action ="">
	<fieldset>
		<legend>学生档案</legend>
		<lable >姓名:<input type ="text" placeholder="请输入学生姓名" /></lable><br /><br />
		<lable >手机号:<input type="tel" /></lable><br /><br />
		<lable >邮箱:<input type="email" /></lable><br /><br />
		<lable>所属学院:<input tytpe="text" placeholder="请选择学院" list="xueyuan" /></lable>
			<datalist id="xueyuan">
				<option>java学院</option>
				<option>前端学院</option>
				<option>PHP学院</option>	
				<option>设计学院</option>

			</datalist>>
			<br/><br/>
		<lable >出生日期:<input type="data" /></lable><br /><br />
		<lable>成绩:<input type ="number" /></lable><br /><br />
		<lable>毕业时间:<input type="data" /></lable><br /><br />
		<input type ="submit" /><input type="reset" />

	</fieldset>





	</form>
</body>
</html>

猜你喜欢

转载自blog.csdn.net/wusiye_123456/article/details/83793269