Hello Frnds,
Here is the tutorial to insert Table to your Post. This is Similar to HTML Table Tag.
Table must Begin with [ table] and End with [/ table].
[ tr] -> table row
[ th] -> table header, and
[ td] -> table cell.
Here is the Example of Using Table :
Table will Look like this :
If you any doubt feel free to post it here.
Here is the tutorial to insert Table to your Post. This is Similar to HTML Table Tag.
Table must Begin with [ table] and End with [/ table].
[ tr] -> table row
[ th] -> table header, and
[ td] -> table cell.
Here is the Example of Using Table :
Code:
[table]
[tr][th]Title 1[/th][th]Title 2[/th][/tr]
[tr][td] Content 1[/td][td] Content Under Title 2[/td][/tr]
[tr][td] Content 2[/td][td] Content Under Title 2[/td[/tr]
[/table]
Table will Look like this :
Title 1 | Title 2 |
---|---|
Content 1 | Content Under Title 2 |
Content 2 | Content Under Title 2 |
If you any doubt feel free to post it here.