HTML Table Tag

It will arrange the group of data in structure format.
<html>
    <head>
                <title> First Page</title>
    </head>
    <body>
                                <table id='a' name='a' class='a' style='' title='Table Tag' height='50%' width='80%' border='1' bordercolor='red' bgcolor='cyan' background='11.jpg' align='center' cellspacing='0px' cellpadding='10px'>
                                <caption>sample-table</caption>
                                                <tfoot>
                                                <tr>
                                                                <td>Cell1</td>
                                                                <td>Cell1</td>
                                                </tr>
                                                </tfoot>
                                                <tr>
                                                                <td>Cell3</td>
                                                                <td>Cell4</td>
                                                </tr>
                                                <thead>
                                                <tr>
                                                                <td>Cell5</td>
                                                                <td>Cell6</td>
                                                </tr>
                                                </thead>
                                </table>
    </body>

</html>

No comments:

Post a Comment