View Single Post
Old 11-29-2011, 04:32 AM   #3
chikkiarora
Registered User
 
Join Date: Nov 2011
Posts: 128
Smile

There are tags given in HTML to create tables. Table is basically a combination of rows and columns. In HTML to create table syntax is given below:
<table border="1">
<tr>
<td>row 1, cell 1</td>
<td>row 1, cell 2</td>
</tr>
<tr>
<td>row 2, cell 1</td>
<td>row 2, cell 2</td>
</tr>
</table>
This is the example to create tables.
chikkiarora is offline   Reply With Quote