Tables

Start of table <table border=# cols=# width=#bgcolor="#RRGGBB" background=image align=position>
align - Center causes the table to be centered.
- Left or right moves the table to one side and wraps the text around it.
background - Background image for the table
bgcolor - Backgournd color for the table
boarder - Width of the boarder (zero is no boarder)
cols - Number of columns (Used by Netscape a a hint to the browser)
width - Width of the table in pixels or percent of line (parent cell if in an other cell)
End of table </table>
Start of row <tr align=position valign=position bgcolor="#RRGGBB" background=image>
align - Horizontal alignment (left, center or  right)
background - Background image for the row
bgcolor - Backgournd color for the row
valign - Vertial alignment (top, center or. bottom)
End of row </tr>
Start of heading <th align=position valign=positionwidth=#bgcolor="#rrggbb" background=image>
The parameters are the same as <td>
End of heading </th>
Start of cell <td align=position valign=positionwidth=#bgcolor="#rrggbb" background=image>
align - Horizontal alignment (left, center or  right).
background - Background image for the cell
bgcolor - Backgournd color for the row
valign - Vertial alignment (top, center,. bottom or baseline)
width - Width of the cell (can be a percent)
End of cell </td>
<table border=1>
<tr><th colspan=2 align=center>Title</th></tr>
<tr>
  <td>Col #1, Row #1</td>
  <td>Col #2, Row #1</td>
</tr><tr>
  <td>Col #1, Row #2</td>
  <td>Col #2, Row #2</td>
</tr></table>
Title
Col #1, Row #1 Col #2, Row #1
Col #1, Row #2 Col #2, Row #2
Code to create the flag
<table border=0>
<tr>
<td bgcolor=#000080 width=25% rowspan=5>
<font color=#ffffff>&nbsp;**********&nbsp;<br>
&nbsp;&nbsp;**********&nbsp;<br>
&nbsp;**********&nbsp;<br>
&nbsp;&nbsp;**********&nbsp;<br>
&nbsp;**********&nbsp;</font></td>
<td width=75% bgcolor=#ff0000>&nbsp;</td></tr>
<tr><td width=75% bgcolor=#ffffff>&nbsp;</td></tr>
<tr><td width=75% bgcolor=#ff0000>&nbsp;</td></tr>
<tr><td width=75% bgcolor=#ffffff>&nbsp;</td></tr>
<tr><td width=75% bgcolor=#ff0000>&nbsp;</td></tr>
<tr><td bgcolor=#ffffff colspan=2>&nbsp;</td></tr>
<tr><td bgcolor=#ff0000 colspan=2>&nbsp;</td></tr>
<tr><td bgcolor=#ffffff colspan=2>&nbsp;</td></tr>
<tr><td bgcolor=#ff0000 colspan=2>&nbsp;</td></tr>
<tr><td bgcolor=#ffffff colspan=2>&nbsp;</td></tr>
<tr><td bgcolor=#ff0000 colspan=2>&nbsp;</td></tr>
<tr><td bgcolor=#ffffff colspan=2>&nbsp;</td></tr>
<tr><td bgcolor=#ff0000 colspan=2>&nbsp;</td></tr>
</table>

Resulting flag
 
 ********** 
  ********** 
 ********** 
  ********** 
 ********** 
 
 
 
 
 
 
 
 
 
 
 
 
 


(person at terminal) HTML index, Free software

(house)  Rick’s home page with index or without index

Last Updated: $Date: 2002/02/03 04:22:48 $ GMT ($Revision: 1.7 $)