Post
Topic
Board Meta
How to create Table with BBCode
by
pkmoney
on 26/05/2018, 10:33:51 UTC
Recently, I have created a thread where table was required for a better look of the post. As I am new, I had problem to create table. Googled it and got some tutorials from which I was able to create table. I also got a tutorial in Bitcointalk but that was not sufficient for me as i am newbie.
So, I decided to create a tutorial so that newbie can easily create table.

You will easily understand if you have a little knowledge in html.

What you need to know:
1. Each code start with [] and end with [/]. For example, table code start with
Code:
[table]
and end with
Code:
[/table]
.
2. Code for row "tr" and code for column "td"
3. All text will be located in between the starting and ending code.For example,
Code:
[table]username[/table]

Code:
We will create a table with 1 row in which there will be a column. Take a table code and inside the table create a row. Then inside the row, create a column.

[table]
[tr]
[td]Username[/td]
[/tr]
[/table]

So,if we want to put 3 row with 3 column, the code will be,
Code:
[table]
[color=red]This is the 1st row.[/color]
[tr]
[td]Name[/td]
[td]age[/td]
[td]year of birth[/td]
[/tr]
[color=red]This is the 2nd row[/color]
[tr]
[td]Alice[/td]
[td]20[/td]
[td]1998[/td]
[/tr]
[color=red]This is the 3rd row.[/color]
[tr]
[td]Bob[/td]
[td]21[/td]
[td]1997[/td]
[/tr]
[/table]

Preview of above code:
Nameageyear of birth
Alice201998
Bob211997

I hope it will help you a little bit. you can also use the code automatically. Have a look at the image below.