Blogger Information
Blog 10
fans 0
comment 0
visits 5150
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
3月19号作业
小议的博客
Original
523 people have browsed it

3月19号作业

代码:

实例

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>用户注册</title>
<meta name="description" content="">
<meta name="keywords" content="">
<link href="" rel="stylesheet">
</head>
<body>
    <table align="center" border="0" cellpadding="0" cellspacing="5" width="400" bgcolor="cornsilk">
    	<caption><h2>用户注册</h2></caption>
    	<tr>
    		<td colspan="2"><hr width="100%"></td>
    	</tr>
    	<tr align="center">
    		<td align="right">邮箱:</td>
    		<td align="left"><input type="text" name="email" value="" placeholder="example@mail.com"></td>
    	</tr>
    	<tr align="center">
    		<td align="right">密码:</td>
    		<td align="left"><input type="text" name="password" value="" placeholder="请输入8-16位字母与数字"></td>
    	</tr>
    	<tr align="center">
    		<td align="right">性别:</td>
    		<td align="left"><input type="radio" name="sex" value="male">男
    			<input type="radio" name="sex" value="female">女
    			<input type="radio" name="sex" value="secret" checked="">保密
    		</td>
    	</tr>
    	<tr align="center">
    		<td align="right">兴趣:</td>
    		<td align="left">
    			<input type="checkbox" name="happy[]" value="html">html
    			<input type="checkbox" name="happy[]" value="css">css
    			<input type="checkbox" name="happy[]" value="javascript">javascript
    			<input type="checkbox" name="happy[]" value="php">php
    		</td>
    	</tr>
		<tr align="center">
			<td align="right">级别:</td>
			<td align="left">
				<select name="level" id="level">
					<option>我是零基础小白</option>
					<option>入门的菜鸟</option>
					<option>已经入门</option>
					<option>做过一些项目</option>
					<option>已经是大神级别</option>
				</select>
			</td>
		</tr>
		<tr align="center">
			<td align="right">头像:</td>
			<td align="left">
				<img src="./images/13.png" width="20">
				<input type="file" name="photo" accept="image/*">
			</td>
		</tr>
		<tr align="center">
			<td align="right">简介:</td>
			<td align="left">
				<textarea name="comment" id="comment" placeholder="文明上网,理性发言" rows="5" cols="40"></textarea>
			</td>
		</tr>
		<tr align="center">
			<td colspan="2">
				<hr>
				<input type="submit" name="submit" value="提交">
				    
				<input type="reset" name="reset" value="重置">
			</td>
		</tr>

    </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