SOURCE

console 命令行工具 X clear

                    
>
console
<h1>注册信息</h1>
<form action="">
    <h3>个人信息</h3>
    <label>姓名:</label>
    <input type="text" placeholder="请填写姓名">
    <br>
    <label>密码:</label><input type="password">
    <br>
    <label>确认密码:</label><input type="password">
    <br>
    <label>性别:</label>
    <input type="radio" name="name1" checked><input type="radio" name="name1"><br>
    <label>曾住城市:</label>
    <select>
        <option>北京</option>
        <option>河北</option>
    </select>
    <br>
    <label>工作描述:</label>
    <br>
    <textarea></textarea>
    <br>
    <input type="checkbox">已阅读并同意以下协议:
    <br>
    <ul>
        <li><a href="#">《用户服务协议》</a></li>
        <li><a href="#">《隐私政策》</a></li>
    </ul>
<button type="submit">免费注册</button>
<button type="reset">重新填写</button>
</form>