TABLES
Tables are defined with the<table> tag .A Table is divided into rows and each row is divided into data cells.
Row defines with <tr>
Cells defines with<td>
Now we make a Table
<table border="1">
<tr>
<td>Name</td>
<td>Roll </td>
</tr>
<tr>
<td>Name</td>
<td>Roll</td>
</tr>
<tr>
<td>Name</td>
<td>Roll</td>
</tr>
</table>
HEADINGS IN A TABLE
Heading in a table are defined with the <th> tag
<table border="1">
<tr>
<th>Heading</th>
<th>Other</th>
<td> </td>
<td> </td>
</tr>
<tr>
<td>Name</td>
<td>Roll</td>
</tr>
<tr>
<td>Name</td>
<td>Roll</td>
</tr>
</table>
1/01/2012 01:09:00 AM
Unknown



Posted in: 