Related Posts
Telugu Video Tutorials – Notes – Shortcuts
Tables are defined with the <table> tag.
To insert a table on your page you simply add these tags where you want the table to occur:
<table>
</table>
<table>
<tr></tr>
<tr></tr>
</table>
<table>
<tr><td></td><td></td></tr>
<tr><td></td><td></td></tr>
</table>
<table>
<tr><td>One</td><td>Two</td></tr>
<tr><td>Three</td><td>Four</td></tr>
</table>