From many days i had a question
in my mind how to create a rows and columns in the blogger with a well
formatted way after a bit R&D i came to know how to create a tables
1. HTML Tags (Traditional way of writing a table using tags quite confusing for non techies)
2. Make a table in word document and use it in blogger( My way... Easy and Cleaner way)
1. Start with first way using HTML tags
a standard html format /code for writing a table say 2 column and 4 rows is
<table>
<tr><td>One </td><td> Two</td></tr>
<tr><td>Three </td><td> Four</td></tr>
<tr><td>Five </td><td> Six</td></tr>
<tr><td>Seven </td><td >Eight</td></tr>
</table>
All the tables in html starts with <table> and ends with </table>
<tr> is tr=table row indicates new row in the table and usually ends with </tr>
<td>...