Blogger Information
Blog 18
fans 0
comment 0
visits 11658
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
319作业
专业交作业
Original
555 people have browsed it
实例
<!DOCTYPE html>
<html>
<head>
	<meta charset="utf-8">
	<title>注册信息用表格制作</title>
</head>
<body>
 <table align="center" bgcolor="lightgreen" >
 	 <caption><h2>用户注册</h2></caption>
 	 <tr>
 	 	<td colspan="2"><hr></td>
 	 </tr>
 	 <form>
 	 	<tr>
 	 		<td><label for="mail">邮箱:</label></td>
 	 		<td><input type="text" name="mail" id="mail" placeholder="填写邮箱"></td>
 	 	</tr>
 	 	<tr>
 	 		<td><label for="mima">密码:</label></td>
 	 		<td><input type="password" name="mima" id="mima" placeholder="数字,字母不少于8个"></td>
 	 	</tr>
 	 	<tr>
 	 		<td>性别:</td>
 	 		<td><input type="radio" name="sex" value="man">男
 	 		<input type="radio" name="sex" value="women" checked="">女
 	 		<input type="radio" name="sex" value="baomi">保密</td>
 	 	</tr>
 	 	<tr>
 	 		<td>兴趣:</td>
 	 		<td><input type="checkbox" name="hobby[]" value="吃饭">吃饭
 	 		<input type="checkbox" name="hobby[]" value="睡觉" checked="">睡觉
 	 		<input type="checkbox" name="hobby[]" value="打麻将">打麻将</td>
 	 	</tr>
 	 	<tr>
 	 		<td><label for="xuanze">级别:</label></td>
 	 		<td><select id="xuanze">
 	 			<option>一级</option>
 	 			<option>二级</option>
 	 			<option selected="">三级</option>
 	 		</select></td>
 	 	</tr>
 	 	<tr>
 	 		<td>照片:</td>
 	 		<td><img src="../images/316-1.png" height="20"><input type="file" name="照片"></td>
 	 	</tr>
 	 	<tr>
 	 		<td><label for="beizhu">备注:</label></td>
 	 		<td><textarea cols="30" rows="5" id="beizhu" placeholder="详细个人信息与资料"></textarea></td>
 	 	</tr>
 	 	<tr>
 	 		<td colspan="2"><hr></td>
 	 	</tr>
 	 	<tr align="center">
 	 		<td colspan="2"><input type="submit" name="submit">
 	 		   <input type="reset" name="reset"></td>
 	 		
 	 	</tr>

 	 </form>
 </table>

</body>
</html>
运行实例 »
点击 "运行实例" 按钮查看在线实例


Correction status:qualified

Teacher's comments:
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!