• 20131214-HTML基础-第二十一天


    [1]表单练习

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

    <html>

        <head>        

        </head>

        <body>

            <form>

                <table border="1" cellspacing="2" cellpadding="2">

                    <thead>

                        <tr>

                            <th></th>

                        </tr>

                    </thead>

                    <tbody>

                        <tr>

                            <td>用户名:</td>

                            <td><input type="text"/></td>

                        </tr>

                        <tr>

                            <td>密码:</td>

                            <td><input type="text"/></td>

                        </tr>

                        <tr>

                            <td>验证码:</td>

                            <td>

                                <input type="text"/>

                                <img src="code.png"/>

                            </td>

                        </tr>

                        <tr>

                            <td></td>

                            <td>

                                <input type="checkbox" id="chk"/>

                                <label for="chk">记住密码<label>

                            </td>

                        </tr>

                        <tr>

                            <td></td>

                            <td>

                                <input type="submit" value="登录"/>

                                <input type="reset" value="重置"/>

                            </td>

                        </tr>

                    </tbody>

                </table>

            </form>

        </body>

    </html>

  • 相关阅读:
    性能测试目的和性能测试主要术语
    回数
    python求100以内的素数
    杨辉三角
    裴波那契数列
    day12_框架二sendmail.py代码
    codeforces 1435 E
    codeforces C
    codeforces 1436E
    codeforces 1435 D. Shurikens (贪心)
  • 原文地址:https://www.cnblogs.com/CharlesZHENG/p/4125027.html
Copyright © 2020-2023  润新知