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
and end with
.
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,
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,
[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:Name | age | year of birth |
Alice | 20 | 1998 |
Bob | 21 | 1997 |
I hope it will help you a little bit. you can also use the code automatically. Have a look at the image below.