answersLogoWhite

0

table is created to store the information in rows and coloums

in table creation it consist of two types

cell spacing

cellpadsing

cell spacing is define as the distance between two cell

cell pading is define as the distance between cell and the wall

the creation of table <tr>

the creation of table heading is <th>

to create a row <td>

an example program

<table>

<tr>

<th>heading 1</th>

<th>heading 2</th>

</tr>

<td>data 1</td>

<td>data 2</td>

</tr>

<tr>

<td>data 3</td>

<td>data 4</td>

</tr>

</table>

User Avatar

Wiki User

15y ago

What else can I help you with?