HTML第三章上机练习4(完善人人网注册页面)

<head>
	<meta charset="UTF-8">
	<title></title>
</head>

<body>
	<img src="img/renren_titile.gif" />
	<p>
		人人网,中国 最真实、最有效的社会平台,加入<br /> 人人网,找回老朋友,结交新朋友。
	</p>
	<p>
		电子邮箱:
		<input type="text" name="email" id="email1" value="[email protected]" readonly/>
	</p>
	<p>
		<label for="pass1">设置密码:</label>
		<input type="password" name="pass" id="pass1" value="" />
	</p>
	<p>
		<label for="name1">真实姓名:</label>
		<input type="text" name="name" id="name1" value="" />
	</p>
	<p>
		性别:
		<input type="radio" name="male" id="male1" value="" />
		<label for="male1">男</label>
		<input type="radio" name="female" id="female1" value="" />
		<label for="female1">女</label>
	</p>
	<p>
		生日:
		<select name="ayear">
			<option value="">1991</option>
			<option value="">1992</option>
			<option value="">1993</option>
		</select>年
		<select name="amonth">
			<option value="">11</option>
			<option value="">12</option>
			<option value="">13</option>
		</select>月
		<select name="aday" id="">
			<option value="">30</option>
			<option value="">31</option>
		</select>日
	</p>
	<p>为什么要填写我的生日?</p>
	<p>
		我现在:
		<select name="identity" disabled="disabled">
			<option value="">请选择身份</option>
		</select>(非常重要)
	</p>
	<p>
		<img src="img/renren_code.gif" alt="" />
		<a href="">看不清换一张?</a>
	</p>
	<p>
		<label for="yanzheng1">验证:</label>
		<input type="text" name="yanzheng" id="yanzheng1" value="" />
	</p>
	<p>
		<img src="img/renren.gif" />
	</p>
</body>

嘻嘻,面对这些代码时,我也曾困惑啦,希望我也能尽我的能力帮助需要的人~加油呀,我们一起努力
有问题随时可以互聊啦~

猜你喜欢

转载自blog.csdn.net/weixin_44100210/article/details/88749118