Sometimes bloggers want to share some statistics or arranged data or information with their blog readers but they feel awkward when they found no way to do so. To avoid such situation you need to be learn some html to get know about how to make tables in blogger or insert in blog post. So, in this post I will teach you to make simple and basic html tables. Lets take start.
Recommended: 30 Ways to Make Money Online
Tables are basically just blocks of data, they included rows and columns. Open New Blog post in HTML tab, starts with table tags.
<table>
</table>
Then start adding rows and dimension by adding <tr> and <td>, respectively.
<table><tr><td>
</td></tr>
</table>
Now add some content,
<table>
<tr><td>
Hi
</td></tr>
</table>
When you click on Compose tab you will see just simply 'Hi' text. So, to give it look like a table we should need to add borders.
<table border=1><tr><td>Hi
</tr></td></table>
Now in preview it will look like
. Currently this is a table with single Column and row. To add more columns you need to add more dimensions.
<table border=1><tr><td>Hi<td>Welcome to<td>PBT
</td></tr></table>