zoukankan      html  css  js  c++  java
  • 注册页面

    <!DOCTYPE html>
    <html lang="en">
    
    <head>
        <meta charset="UTF-8">
        <meta http-equiv="X-UA-Compatible" content="IE=edge">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>Document</title>
    </head>
    
    <body>
        <h5>青春不常在</h5>
        <form action="">
            <table>
                <tr>
                    <td>性别</td>
                    <td>
    
                        <input type="radio" name="sex" id="nan" checked="checked">
                        <label for="nan">男</label>
    
                        <input type="radio" name="sex" id="nv">
                        <label for="nv">女</label>
                    </td>
                </tr>
                <tr>
                    <td>
                        生日
                    </td>
                    <td>
                        <select name="" id="">
                            <option value="">请选择年</option>
                            <option value="">199x</option>
                            <option value="">199x</option>
                            <option value="">199x</option>
                            <option value="">199x</option>
                        </select>
                    </td>
    
                </tr>
                <tr>
                    <td>所在地区</td>
                    <td><input type="text" value="北京思密达"></td>
                </tr>
                <tr>
                    <td>婚姻状况</td>
                    <td>
                        <input type="radio" checked="checked">未婚
                    </td>
                </tr>
                <tr>
                    <td>喜欢的类型</td>
                    <td>
                        <input type="checkbox" id="wm" checked="checked" name="xg">
                        <label for="wm">妩媚的</label>
                    </td>
                    <td>
                        <input type="checkbox" id="ka" checked="checked" name="xg">
                        <label for="ka">可爱的</label>
                    </td>
                </tr>
                <tr>
                    <td>自我介绍</td>
                    <td>
                        <textarea name="" id="" cols="3" rows="1">自我介绍</textarea>
                    </td>
                </tr>
                <tr>
                    <td></td>
                    <td>
                        <input type="button" value="免费注册">
                        <br>
                        <input type="checkbox" checked="checked">我同意注册条款和会员加入标准
                        <br>
                        <a href="#">我是会员,立即登录</a>
                        <br>
                        <h6>我承诺</h6>
                        <ul>
                            <li>xxxxx</li>
                            <li>xxxxx</li>
                            <li>xxxxx</li>
                            <li>xxxxx</li>
                        </ul>
                    </td>
                </tr>
            </table>
        </form>
    
    
    </body>
    
    </html>
    
  • 相关阅读:
    CURL常用命令
    极客无极限 一行HTML5代码引发的创意大爆炸
    JS的prototype和__proto__(含es6的class)
    leetcode 44:construct-binary-tree-from-preorder-and-inorder
    leetcode 43:construct-binary-tree-from-inorder-and-postorder
    leetcode 42:binary-tree-level-order-traversal-ii
    leetcode 38:path-sum
    leetcode 37:path-sum-ii
    leetcode 33:pascals-triangle
    leetcode 32:pascals-triangle-ii
  • 原文地址:https://www.cnblogs.com/icemiaomiao3/p/14564911.html
Copyright © 2011-2022 走看看