注册页面

<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <title>注册页面</title>
</head>
<body>
    <h1>用户注册</h1>
<form >
  注册昵称:            
  <p><input type="text" name="user"></p>
  密码:
  <p><input type="password" name="password"></p>
  <fieldset style="width: 300px">
    <legend>身份信息</legend>
    真实姓名:<input type="text">
    <br>
    <hr />
    年龄:<input type="text" />
    <br>
    <hr />
    邮箱号码:<input type="text" />
    <hr />
  您的性别:<select>
      <option value ="man">Man</option>
    <option value ="woman">Woman</option>
  </select>
  </fieldset>
  &nbsp;
  &nbsp;
  &nbsp;
  &nbsp;
  &nbsp;
  <label for="注册">注册</label>
  <input type="radio" name="sex" id="注册" />
  <label for="取消">取消</label>
  <input type="radio" name="sex" id="取消" />

</form>
</body>
</html>

posted @ 2018-09-16 23:31  葫芦小金刚L  阅读(127)  评论(0)    收藏  举报