Link to home
Start Free TrialLog in
Avatar of Quack
QuackFlag for United States of America

asked on

I have a request to fix a line of html code to meet html standards...not sure what's off though...can anyone shed light on this?

</tr> on line 64 is where the request to modify is referenced...page is working...not sure where they're having issues though.

<HTML LANG="EN-US">

<head>
<title>title</title>

<script language="JavaScript" type="text/JavaScript">
function MM_reloadPage(init) {  //reloads the window if Nav4 resized
  if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
    document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
  else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);
</script>

<link href="../css/home.css" rel="stylesheet" type="text/css" />
<LINK rel="Home" title="site"
      type="text/html"
      href="link">
</head>

<BODY >
<table width="100%" height="100%" border="0" cellpadding="0" cellspacing="0" background="../images/grad2b.gif">
   <tr>
      <td width="10%">&nbsp;</td>
      <td width="80%" valign="top">
           <table border="0" cellpadding="0" cellspacing="0" bgcolor="#FFFFFF" >
            <tr>
               <td><a href="../../../index.htm"><img src="../images/IntranetBanner_010909.jpg" alt="banner" width="800" height="82" border="0" ></a></td>
            </tr>
            <tr>
               <td><CF_topmenu_new></td>
            </tr>
            <tr>
               <td valign="top"><table width="100%" border="0">
                  <tr bgcolor="#FFFFFF">
                     <td valign="top"><table width="100%">
                           <tr valign="top">
                              <td width="15%"><CF_leftNav_new></td>
                              <td><table width="100%" border="0">
                                 <tr>
                                    <td valign="bottom" class="Headline18Gold">Inquiry</td>
                                 </tr>
                                 <tr>
                                 <td class="maintxt12"><table width="100%" border="0" align="center" cellpadding="0" cellspacing="0">
                                 <tr>
                                  <td align="center" class="maintxt12"><table width="90%" border="0" align="left" cellpadding="5" cellspacing="0">                                                
                                  <tr>
                                  <td colspan="3" class="maintxt12"><span class="maintxt">This application is currently off-line for maintenance. During this downtime please contact <A href="link" target="_blank">Customer Service</A> for assistance</span>
                                                  </tr>
                                  </table></td>
                                  </tr>
                                  </table></td>
                                 </tr>
                                 <tr>
                                    <td>&nbsp;</td>
                                 </tr>
                              </table></td>
                       </tr>
                     </table></td>
                  </tr>
               </table></td>
            </tr>
            <tr>
               <td>&nbsp;</td>
            </tr>
            <tr>
               <td><CF_CGfooter_new></td>
            </tr>
      </table></td>
      <td width="10%">&nbsp;</td>
   </tr>
   <tr>
      <td width="10%">&nbsp;</td>
      <td width="80%">&nbsp;</td>
      <td width="10%">&nbsp;</td>
   </tr>
   <tr>
      <td width="10%">&nbsp;</td>
      <td width="80%">&nbsp;</td>
      <td width="10%">&nbsp;</td>
   </tr>
</table>


</body>
</html>
ASKER CERTIFIED SOLUTION
Avatar of zephyr_hex (Megan)
zephyr_hex (Megan)
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
BTW.... the width attribute on the td element is obsolete in HTML5.  You should use CSS for styling.