其他分享
首页 > 其他分享> > 前端练习——会员注册

前端练习——会员注册

作者:互联网

 

代码如下:

<!DOCTYPE html>
<html>
	<head>
		<meta charset="utf-8">
		<title></title>
	</head>
	<body>
		<h1>会员注册</h1>
		<form action="会员注册.html" >
			<fieldset>
			<legend>注册填写</legend>
			用户名:<input type="text" /><br>
			密码:<input type="password" /><br>
			性别:<input type="radio" name="sex" value="man" checked="checked"/>男<input type="radio" name="sex" value="womam"/>女<br>
			兴趣:<input type="checkbox" name="enjoy" value="internet"/>上网 <input type="checkbox" name="enjoy" value="exercise"/>运动 <input type="checkbox" name="enjoy" value="read"/>看书<br>
			上传照片:<input type="file" name="选择文件"/><br>
			年龄:<input type="number" min="0" max="100" name="age"/><br><br>
			邮箱:<input type="email" name="email"/><br><br>
			网址:<input type="url" name="web"/><br><br>
			电话:<input type="tel" name="telephone"/><br><br>
			最爱的颜色:<input type="color"  name="color"/><br><br>
			搜索内容:<input type="search"  name="text"/><br><br>
			范围:<input type="range" name="extent"/><br><br>
			选择日期:<input type="date" name="date"/><br><br>
			选择周:<input type="week" name="wweek"/><br><br>
			学历:<select>
				<option value="gz">高中</option>
				<option value="dz">大专</option>
				<option value="bk" selected>本科</option> 
				<option value="ss">硕士</option>
			</select><br><br>
			个人介绍:<textarea rows="10" cols="60" name="introduce"></textarea><br>
			<input type="submit" value="提交" />
			<input type="reset" value="取消" /><br>	
			</fieldset>
			
		</form>
	</body>
</html>

标签:用户名,大专,前端,练习,选择,会员,注册,邮箱
来源: https://blog.csdn.net/qq_53449150/article/details/120524769