学生档案


<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<title>Document</title>
</head>
<body>
	<fieldset>
		<legend>学生档案思密达</legend>
		姓名:<input type="text" placeholder="请输入姓名"><br>
		密码:<input type="password" placeholder="请输入密码"><br>
		性别:<input type="radio" name="xx">男
			  <input type="radio" name="xx">女
			  <input type="radio" name="xx">其他<br><br>
		所属学院:
		<input type="radio" name="sex" >武汉大学
		<input type="radio" name="sex">哈佛大学<br>
		<input type="radio" name="sex">上海大学
		<input type="radio" name="sex">小学生<br>
		邮箱:<input type="email" placeholder="请输入邮箱号"><br>
		手机号:<input type="tel" placeholder="请输入手机号"><br>
		出生日期:<input type="date"><br>
		成绩:<input type="number" placeholder="输入成绩"><br>
		毕业时间:<input type="date"><br>
		<input type="submit">
		<input type="reset">

	</fieldset>


</body>
</html>

猜你喜欢

转载自blog.csdn.net/xl4277/article/details/79686540