用HTML5写一个简单的注册界面


<!DOCTYPE html>
<html>
	<head>
		<title>练习4</title>
		<meta charset="UTF-8"/>
	</head>
	<body>
	<table border="1">
	<tr>
		<th>用户名</th>
		<td><form><input type="text" name="username"/></form></td>
	</tr>
	<tr>
		<th>密码</th>
		<td><form><input type="password" name="pwd"/></form></td>
	</tr>
	<tr>
		<th>性别</th>
		<td><form>男<input type="radio" name="xb"value="0"/> 女<input type="radio" name="xb"value="1"/></form></td>
	</tr>
	<tr>
		<th>从事行业</th>
		<td><form><select name="sc" size="1"/>
				<option value="0" selected="selected">计算机</option>
				<option value="1">其他</option>
			</select>
			</form></td>
	</tr>
	<tr>
		<th>自我介绍</th>
		<td><form>自我介绍:<br><textarea name="zhaoshui"cols="30"row="60"></textarea></form></td>
	</tr>
	<tr>
		<th><button>注册</button></th>
		<td><button>清除</button></td>
	</tr>
	</table>
	</body>
</html>
练习4
用户名
密码
性别
从事行业
自我介绍
自我介绍:


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM