Table is vary important tag for a website. A table has various kind of tag or html coding. Such as Table Row, Table Column, Row-Column Spacing, Table Border, Table Color etc.
1. A Table for 1-Row, 1-Column
HTML Coding |
Show in Browser |
---|---|
[html] <table> [/html] |
|
2. A Table for 1-Row, 2-Column
HTML Coding |
Show in Browser |
---|---|
[html] |
|
3. A Table for 1-Row, 3-Column
HTML Coding |
Show in Browser |
---|---|
[html] |
|
===========================================================================
1. A Table for 2-Row, 1-Column
HTML Coding |
Show in Browser |
---|---|
[html] |
|
2. A Table for 3-Row, 1-Column
HTML Coding |
Show in Browser |
---|---|
[html] |
|
===========================================================================
1. A Table for 2-Row, 2-Column
HTML Coding |
Show in Browser |
---|---|
[html] <table> |
|
===========================================================================
1. A Table for 3-Row, 3-Column
HTML Coding |
Show in Browser |
---|---|
[html] |
|
===========================================================================
Table Border=1
HTML Coding |
Show in Browser |
---|---|
[html] <table border=1> <tr> <td>Table Border=1</td> </tr> </table> [/html] |
|
Table Border=10
HTML Coding |
Show in Browser |
---|---|
[html] <table border=10> <tr> <td>Table Border=10</td> </tr> </table> [/html] |
|