I am in cell one | I am in cell two |
Anyway, let us see how to make a simple table using HTML.
The table tag is the <TABLE> tag.
The <TR> tag tells the browser to carry the following cell to the
It is like the <BR> tag.
<TABLE border="1" cellpadding="20" cellspacing="10">
This will give us this:
I am cell one | I am cell two |
I am cell three in the next line | I am cell four in the next line |
As you can see, the cellpadding is for size of each cell and cellspacing is for space between each cell.