You will soon need to insert images in table cells. As we told later tables will be used to hold images in their places. You can insert an image in a table cell by inserting <IMG> tag between <TD></TD> tags of a certain cell.
Example
<HTML>
<HEAD>
<TITLE>Example</TITLE>
</HEAD>
<BODY>
<TABLE BORDER=4>
<TR>
<TD><IMG SRC=”image53.gif”></TD>
</TR>
</TABLE>
</BODY>
</HTML>
