|
|
| alpha filter
|
|
| Text efects
|
|
| Scrollbar
|
|
| Borders
|
|
| Tables
|
|
| HTML :Font face
|
|
| HTML colors
|
|
| Home site
|
|
| Guestbook
|
|
|
TABLE
<TABLE BORDER=5px ><TR><TD align=center>
Add here what you want to put in it
</TD>
</TR>
</TABLE>
The result
| Add here what you want to put in it
|
Look to the position of the text(the code in color)
<TABLE BORDER=5px><TR>
<TD style="width:60px" align=center>Text 1</TD>
<TD style="width:60px" align=left>Text 2</TD>
<TD style="width:60px" align=right>Text 3</TD>
</TR>
</TABLE>
The result
Table with rowspan and colspan(the code in this color)
<TABLE cellSpacing=2 cellPadding=10 border=5>
<CAPTION>Table with row and col</CAPTION>
<COLGROUP style="BACKGROUND: pink; COLOR: blue; TEXT-ALIGN: center">
<COLGROUP style="BACKGROUND: red; COLOR: black; TEXT-ALIGN: center" span=5>
<COLGROUP>
<TBODY>
<TR style="BACKGROUND: #ccffcc; COLOR: green">
<TH>The head title </TH>
<TH>row 1 </TH>
<TH>row 2 </TH>
<TH>row 3 </TH>
<TH>row 4 </TH>
<TH>row 5 </TH></TR>
<TR>
<TH>col 1</TH>
<TD>Text a </TD>
<TD colSpan=2>Text b </TD>
<TD>Text c </TD>
<TD rowSpan=3>Text d </TD></TR>
<TR>
<TH>col 2 </TH>
<TD rowSpan=2>Text e</TD>
<TD>Text f</TD>
<TD>Text g </TD>
<TD>Text h</TD></TR>
<TR>
<TH>col3</TH>
<TD>Text i </TD>
<TD>Text j </TD>
<TD>Text k</TD></TR></TBODY></TABLE>
Table with row and col
| The head title |
row 1 |
row 2 |
row 3 |
row 4 |
row 5 |
| col 1 |
Text a |
Text b |
Text c |
Text d |
| col 2 |
Text e |
Text f |
Text g |
Text h |
| col3 |
Text i |
Text j |
Text k |
Table GENERATOR
|