用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
用户名
密码
性别
从事行业
自我介绍
自我介绍:
你好,欢迎你来到博客,我是布莱昂。在这里你将看到我关于前端技术和框架的一些理解和体会,并且以后所有博客将在这里发布,由于本人技术水平和认知能力有限,文中难免有认识不足和理解错误的地方,欢迎大家留言指正,我将感激不尽!
原文地址:https://www.cnblogs.com/zxa2020/p/12812693.html