html 5 notes

<! DOCTYPE HTML>
<HTML>
    <head>
        <Meta charset = "UTF-. 8">
        <title> </ title>
    </ head>
    <body>
        <Table border = "1px" width = "500px" height = " 400px ">
            <-! title of the table can be omitted ->
            <caption> table girlfriend </ caption>
            <-! the head of the table can be omitted ->
            <thead>
                <TR>
                    <TH> name </ TH>
                    <TH> Age </ TH>
                    <TH> height </ TH>
                    <TH bgcolor = "Aqua"> weight </ TH>
                </ TR>
            </ thead>
            <-! table body can be omitted ->
            <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>

Guess you like

Origin www.cnblogs.com/xmm520/p/10932392.html
Recommended