Tuesday, May 19, 2009

HTML Tutorial: Table basic

Basic table example:

<table>
<tr>
<td>row1 Col1
</td>
<td> row1 col2
</td>
<td> row1 col3
</td>
</tr>
<tr>
<td> row2 Col1
</td>
<td> row2 col2
</td>
<td> row2 col3
</td>
</tr>
</table>

This will create a table like











row1 Col1
row1 col2
row1 col3
row2 Col1
row2 col2
row2 col3

No comments:

Post a Comment