I'm using HTML on a webpage I'm building but how can I control where its gonna go?

rikitikitavi

New member
I put in the code and the HTML code keeps putting the game on the upper left of the computer screen, moving my header banner down below it. How can I put it where I want it?
 
use this script inside ur body tags

<table border="0" width="100%" height="100%">
<tr>
<td>
<img src="image.jpg">
</td>
</tr>
<tr>
<td>
<img src="game.swf">
</td>
</tr>
 
Back
Top