+ 1
please anyone can explain how using tables??
4 Answers
+ 3
Use <table> Tag To Make Table.
And Use <tr> For Making Table Row & <td> For Table Data.
Example ;
<table>
<tr>
<td>Name</td>
<td>Contact </td>
</tr>
<tr>
<td>PIYUSH</td>
<td>999999999</td>
</tr>
</table>
+ 2
What exactly you wanna know?
+ 1
tables are useful when you want a specific layout, help to order and spacing elements in the page.
0
thanks