answersLogoWhite

0

Write a short note on table creation?

Updated: 12/16/2022
User Avatar

Yvkiran

Lvl 1
14y ago

Best Answer

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

14y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Write a short note on table creation?
Write your answer...
Submit
Still have questions?
magnify glass
imp