zoukankan      html  css  js  c++  java
  • 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>

  • 相关阅读:
    Qt编写数据可视化大屏界面电子看板4-布局另存
    Qt编写数据可视化大屏界面电子看板3-新建布局
    Qt编写数据可视化大屏界面电子看板2-配色方案
    Qt编写数据可视化大屏界面电子看板1-布局方案
    Qt编写自定义控件19-图片背景时钟
    Qt编写自定义控件18-魔法小鱼
    AngularJS概述-3D
    controller与requestmapping
    Maven pom.xml 报 Missing artifact jdk.tools:jdk.tools:jar:1.7
    大数据究竟是什么
  • 原文地址:https://www.cnblogs.com/CharlesZHENG/p/4125027.html
Copyright © 2011-2022 走看看