注册页面的编写

简易注册页面

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Register Form</title>
</head>

<body>
<!-- 居中-->
<center>
<!-- 欢迎行-->
<h2><strong>欢迎来到注册界面!</strong></h2>
<!-- 主要内容-->
<form action="" method="get">
<div>
<!-- <font color="blue" HTML 字体颜色设置>-->
请输入您的用户名:<input type="text" maxlenth="24"/>
</div>
<div>
请输入您的密码:<input type="password" maxlenth="16"/>
</div>
<div>
请再次输入您的密码:<input type="password" maxlenth="16"/>
</div>
<div>
请输入您的验证邮箱:<input type="email"/>
</div>
<div>
兴趣爱好:<input type="checkbox"/>篮球<input type="checkbox"/>足球<input type="checkbox"/>健身<input type="checkbox"/>追剧<input type="checkbox"/>学习<input type="checkbox"/>打游戏
</div>
<div>
性别:<input type="radio"/>男<input type="radio"/>女<input type="radio"/>保密
</div>
<div>
<input type="submit" value="注册"/>
<input type="reset"/>
</div>
</form>
</center>
</body>
</html>

原文地址:https://www.cnblogs.com/xiaohu12138/p/9658288.html