'tbody' Example : tbody : Table Tags HTML CSS TUTORIALS


HTML CSS TUTORIALS » Table Tags » tbody »

 

'tbody' Example



    
<html>
<head>
<title>tbody element example</title>
</head>
<body>
<table width="500" align="center">
    <thead style="color:blue" align="center">
        <td>This cell is in the thead rows group.</td>
        <td>This cell is in the thead rows group.</td>
        <td>This cell is in the thead rows group.</td>
    </thead>
    <tbody>
        <tr>
           <td>This cell is in the tbody rows group.</td>
           <td>This cell is in the tbody rows group.</td>
           <td>This cell is in the tbody rows group.</td>
        </tr>
        <tr>
           <td>This cell is in the tbody rows group.</td>
           <td>This cell is in the tbody rows group.</td>
           <td>This cell is in the tbody rows group.</td>
        </tr>
    </tbody>
    <tfoot style="color:red" align="right">
        <td>This cell is in the tfoot rows group.</td>
        <td>This cell is in the tfoot rows group.</td>
        <td>This cell is in the tfoot rows group.</td>
    </tfoot>
</table>
</body>
</html>
    
      
      



HTML code for linking to this page:

Follow Navioo On Twitter

HTML CSS TUTORIALS

 Navioo Table Tags
» tbody