
Source Code
Here is the source code for the table we just created. After you finish reading it, see how similar it was to the prediction you made.
<HEAD>
<TITLE>Table</TITLE>
</HEAD>
<BODY> <TABLE BORDER CELLSPACING=1 CELLPADDING=7 WIDTH=638>
<TR><TD WIDTH="33%" VALIGN="TOP">
Family</TD>
<TD WIDTH="33%" VALIGN="TOP">
People</TD>
<TD WIDTH="33%" VALIGN="TOP">
Children</TD>
</TR>
<TR><TD WIDTH="33%" VALIGN="TOP">
Johnsons</TD>
<TD WIDTH="33%" VALIGN="TOP">
4</TD>
<TD WIDTH="33%" VALIGN="TOP">
2</TD>
</TR>
<TR><TD WIDTH="33%" VALIGN="TOP">
Smiths</TD>
<TD WIDTH="33%" VALIGN="TOP">
2</TD>
<TD WIDTH="33%" VALIGN="TOP">
0</TD>
</TR>
<TR><TD WIDTH="33%" VALIGN="TOP">
Williams</TD>
<TD WIDTH="33%" VALIGN="TOP">
6</TD>
<TD WIDTH="33%" VALIGN="TOP">
4</TD>
</TR>
<TR><TD WIDTH="33%" VALIGN="TOP">
Jones </TD>
<TD WIDTH="33%" VALIGN="TOP">
6</TD>
<TD WIDTH="33%" VALIGN="TOP">
1</TD>
</TR>
<TR><TD WIDTH="33%" VALIGN="TOP">
Browns</TD>
<TD WIDTH="33%" VALIGN="TOP">
3</TD>
<TD WIDTH="33%" VALIGN="TOP">
0</TD>
</TR>
</TABLE>
</BODY>
</HTML>