Your page has no body and you've not inserted the script at the end as instructed. You might be able to get away with changing:
Code:
setInterval("initialize()",10)
to:
Code:
onload=function(){setInterval("initialize()",10)}
But, you may need to have a body tag (and maybe even html and head tags as well, body tag only shown below):
Code:
<body>
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td height="5" colspan="2"></td>
</tr>
<tr>
<td> </td>
<td width="816" valign="bottom"><span class="style2"><strong>Whooooooooow!</strong></span></td>
</tr>
<tr>
<td> </td>
<td class="style3">Mother****ing testing baby, I am your father you sausage jocky!</td>
</tr>
<tr>
<td> </td>
<td></td>
</tr>
</table>
</body>
And place all of your content in it, keep style in the head.
Bookmarks