I have a frame in my index page as such,
<head>
</head>
<frameset cols="1000," border=0>
<frame name="top" src="top.htm" marginwidth="0" topmargin="0" leftmargin="0" marginheight="0" scrolling="No" frameborder="no" noresize>
</frameset>
Now this basically is the top header. Now after this when I try to put a table under it as in the <body> </body> section,
<table ..>
<tr ...>
<td>
..
</td>
<td>
..
</td>
<td>
..
</td>
</tr>
</table>
But the conetnts of the table are not being displayed. Whats wrong here ??
Thanks.
<head>
</head>
<frameset cols="1000," border=0>
<frame name="top" src="top.htm" marginwidth="0" topmargin="0" leftmargin="0" marginheight="0" scrolling="No" frameborder="no" noresize>
</frameset>
Now this basically is the top header. Now after this when I try to put a table under it as in the <body> </body> section,
<table ..>
<tr ...>
<td>
..
</td>
<td>
..
</td>
<td>
..
</td>
</tr>
</table>
But the conetnts of the table are not being displayed. Whats wrong here ??
Thanks.