Need table code

Hi guys,
I'm trying get a bit of code done up for my little brother, but I can't seem to get it right.

What I want is for a web page to load in a table that is 320x240(the page opens up to a video that is roughly those dimensions).

Here's the code I'm trying:

Code:
<TABLE CELLPADDING="2" CELLSPACING="2" WIDTH="100%">
<TR>
<TD BGCOLOR="#CCCCCC"><META HTTP-EQUIV="Refresh" 

CONTENT="4;URL=http://www.bamargera.com/html/GalleryVideos/getzlimogap.html"></TD>
</TR>
</TABLE>

Can anyone help me out by giving the correct code?
 
I don't post embedded video but there are a few simple things that work with images that may also work in your situation.

If you have a table with one row and one column (ie one cell) and you put an image 320x240 in that row, the row will open up to at least 320x240. If you made the row 500 wide then there will be some space (depending on the image alignment).

If you have a plain background to the page (let's say white), you can make yourself a white image 240 pixels high by 1 pixel wide (really low quality jpeg will do) and put in the table cell (say left or right aligned). That will force the cell to a height of 240 pixels and you won't be able to see the image against the background.

Starman*
 
Back
Top