html Table Examples


Tags:

<table border width="100%">
 <tr>
     <td>Cell One</td>
     <td>Cell Two</td>
 </tr>
</table>

Looks Like:

Cell One Cell Two







<table border width="100%">
 <tr>
     <td align="center">Cell One</td>
     <td align="center" rowspan="3">Cell Four</td>
 </tr>
 <tr>
     <td>Cell Two</td>  
 </tr>
 <tr>
     <td>Cell Three</td>
 </tr>
</table>

Looks Like:

Cell One Cell Four
Cell Two
Cell Three