SOURCE

console 命令行工具 X clear

                    
>
console
<html>
    <head>
        <body>
            <title>注册信息</title>
           <h1>注册信息</h1>
           <form>
               <h3>个人信息</h3>
               <label>姓名:<input type="text" placeholder="请输入真实姓名"></label>
               <br><br>
               <label>密码:<input type="password" placeholder="请输入密码"></label>
               <br><br>
               <label>确认密码:<input type="password" placeholder="请输入确认密码"></label>
                <br><br>
                性别:
                <label><input type="radio" name="gen" checked></label>
                <label><input type="radio" name="gen"></label>
                <br><br>
                居住城市:
                <select>
                    <option>武汉</option>
                    <option>武汉1</option>
                    <option>武汉2</option>
                    <option selected>武汉3</option>
                </select>
                <br><br>
                工作描述:
                <br>
                <textarea>jy</textarea>
                <br><br>
                <label><input type="checkbox">以阅读并同意一下协议:</label>
                <br><br>
                <ul>
                    <li><a href="#">用户协议</a></li>
                    <li><a href="#">用户协议2</a></li>
                </ul>
                <button type="submit">注册</button>
                <button type="reset">重置</button>





           </form>

        </body>


    </head>


</html>