zoukankan      html  css  js  c++  java
  • html笔记5

    <!DOCTYPE html>
    <html>
        <head>
            <meta charset="UTF-8">
            <title></title>
        </head>
        <body>
            <table border="1px" width="500px" height="400px">
                <!--表格的标题   可省略-->
                <caption>女朋友表</caption>
                <!--表格的头部   可省略-->
                <thead>
                    <tr>
                        <th>姓名</th>
                        <th>年龄</th>
                        <th>身高</th>
                        <th bgcolor="aqua">体重</th>
                    </tr>
                </thead>
                <!--表格的主体  可省略-->
                <tbody>
                    <tr align="center" bgcolor="bisque">
                        <td valign="top">翠花</td>
                        <td>18</td>
                        <td>165CM</td>
                        <td>100KG</td>
                    </tr>
                    <tr align="center">
                        <td>如花</td>
                        <td>20</td>
                        <td>170CM</td>
                        <td>80KG</td>
                    </tr>
                </tbody>
            </table>
        </body>
    </html>

  • 相关阅读:
    HDU 4388 To the moon
    HDU 4757 Tree
    HDU 5816 Hearthstone
    hihocoder 1356 分隔相同整数
    HDU 5726 GCD
    POJ3026 Borg Maze(Prim)(BFS)
    POJ1258 Agri-Net(Prim)
    POJ1751 Highways(Prim)
    POJ2349 Arctic Network(Prim)
    POJ1789 Truck History(Prim)
  • 原文地址:https://www.cnblogs.com/meng0731/p/10931863.html
Copyright © 2011-2022 走看看