-------
Line 19, Column 29: required attribute "TYPE" not specified.
<script language="JavaScript">
-- correct: <script language="javascript" type="text/javascript">
-------
Line 51, Column 18: there is no attribute "MARGINWIDTH".
<body marginwidth="0" marginheight="0" bgcolor="#ffffff" leftmargin="0"
-- like it says, there is no valid marginwidth, LEFTMARGIN, etc... you can make it from CSS: body {margin:0}
-------
Line 52, Column 128: there is no attribute "BACKGROUND".
…ign="top"><td width="50%" background="images/bg.gif"><img width="1" height="1
-- you must have <td class="my_bg" and CSS: .my_bg { background-image:url(images/bg.gif)}
-------
you must learn some CSS 
|