Here is my simple html code that list users in a table format:
<html><B>User List</B><table border=1 cellpadding=0 cellspacing=1>
<TR><TD>Name</TD><TD>Age</TD><TD>Gender</TD></TR><BR>
<TR><TD>Joe</TD><TD>21</TD><TD>M</TD></TR><BR>
<TR><TD>Mary</TD><TD>33</TD><TD>f</TD></TR><BR></Table</Html>
The problem is: There is a big gap (several blank rows) between the line
'User List' and the table when display in html. (It appears that the more
<TD> entries I make in the code, the wider the gap.) What code would need to
be added to the coding in order to have the table listed just one line below
the line "User List"? I appreciate your help.
Fan