I need help with HTML coding?

i'm trying to get my table to look like this:

Ms. Samaroo 2475
Ms. cato 2476
Mr. Navarro 2432
Mr. Garcia 2433

**exactly like that with the large space in the middle, but when I do it, it comes out like this:

Ms. Samaroo 2475
Ms. cato 2476
Mr. Navarro 2432
Mr. Garcia 2433

without the space.
how can i get it with the large space?
This is the code im using:

<TABLE>
<TR> <TD>Ms. Samaroo</TD> <TD>2475</TD>
</TR>
<TR> <TD>Ms. cato</TD> <TD>2476</TD>
</TR>
<TR> <TD>Mr. Navarro</TD> <TD>2432</TD>
</TR>
<TR> <TD>Mr. Garcia</TD> <TD>2433</TD>
</TR>
<TABLE>
the large space didn't come out in the begining it's supposed to look like this but with out the dots.

Ms. Samaroo.............2475
 
Back
Top