form
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>form</title>
</head>
<body>
<p><center><font size="6" color="lightblue"> ye网页用户注册</font></center></p>
<form align="center" action="form_action.asp" method="get">
昵称: <input type="text" name="user" />
<br>
密码: <input type="password" name="password" />
<br>
性别: 男:
<input type="radio" checked="checked" name="Sex" value="male" />
女:
<input type="radio" name="Sex" value="female" />
<br>
电话:<input type="text">
<br>
邮箱:<input type="email">
<br>
<br>
<input type="submit" name="submit" value="提交">
</form>
<html>
<head>
<meta charset="utf-8">
<title>form</title>
</head>
<body>
<p><center><font size="6" color="lightblue"> ye网页用户注册</font></center></p>
<form align="center" action="form_action.asp" method="get">
昵称: <input type="text" name="user" />
<br>
密码: <input type="password" name="password" />
<br>
性别: 男:
<input type="radio" checked="checked" name="Sex" value="male" />
女:
<input type="radio" name="Sex" value="female" />
<br>
电话:<input type="text">
<br>
邮箱:<input type="email">
<br>
<br>
<input type="submit" name="submit" value="提交">
</form>
</body>
</html>