Creating a Simple Table
Specify Attributes in Each Cell
To make both the words "Hello" and "There" larger than the normal size specified in the HTML code, you would need to specify the attributes within each cell.
...
<TABLE><TR>
<TD><FONT SIZE=6>
Hello
</FONT></TD>
<TD><FONT SIZE=6>
There
</FONT></TD>
</TR></TABLE>
...