SOURCE

console 命令行工具 X clear

                    
>
console
<body>
  <h1>
    信息认证
  </h1>
  <hr>
  <form method="post" action="save.php">
    <label>
      账户:
    </label>
    <input type="text" name="name">
    <br>
    <label>
      邮箱:
    </label>
    <input type="text" name="email">
    <br>
    <label>
      密码:
    </label>
    <input type="password" name="pass">
    <br>
    <label>
      性别:
    </label>
    <label for="male"></label>
    <input type="radio" id="male" name="gender">
    <label for="female"></label>
    <input type="radio" id="female" name="gender">
    <br>
    <label>
      爱好:
    </label>
    <select>
      <option value="看书">
        看书
      </option>
      <option value="旅游" selected="selected">
        旅游
      </option>
      默认是旅游
      <option value="运动">
        运动
      </option>
      <option value="购物">
        购物
      </option>
    </select>
    <br>
    <label>
      备注:
    </label>
    <textarea rows="10" cols="22">
    </textarea>
    <br>
    <input type="submit" value="提交">
    <input type="reset" value="重置">
  </form>
</body>