|
When you make up a table, you can use table tag.
1)Form of a table
|
<table border=the number of pixel cellspacing=the
number of pixel
cellpadding=the number of pixel width=the number of
pixel>
<tr>
<th>....</th>
<td>....</td>
</tr>
</table>
|
2)Function of table
border : It appoints the outline thickness of table
caption : It appoints the title of table
cellspacing : It appoints the space between border and cell,
or cell and cell
cellpading : It appoints the space between the cell border line
and letter line
width : It appoints the width of table or cell
tr : It divides the horizontal line in table
th : It displays the title in table, the basis is center and
bold style
td : It displays the contents in table, the basis is left and
normal style
colspan : It appoints the number of line you want to put together
horizontally
rowspan : It appoints the number of line you want to put
together vertically
|