Changing a page from html to Xhtml

Discussion in 'HTML & Website Design' started by chrisj, Jun 27, 2007.

  1. #1
    I have a web page template in html. I can integrate the script into the page, but the script author says it can only be styled with xhtml.

    Can someone make the changes on this page so it is xtml? I tried running through the validator at w3.org but was unsuccessful. thanks

    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    <title></title>
    
    <link href="custom.css" rel="stylesheet" type="text/css">
    </head>
    
    <body>
    <table width="770" border="0" cellpadding="0" cellspacing="0" id="maintable">
      <tr>
        <td colspan="2" id="topline">&nbsp;</td>
      </tr>
      <tr>
        <td id="logocell" width="174"><img src="images/logo.gif" alt="" width="174" height="134"></td>
        <td><img src="images/topimg1.jpg" alt="" width="309" height="134"><img src="images/topimg2.jpg" alt="" width="287" height="134"></td>
      </tr>
      <tr>
        <td><img src="images/greyline.gif" alt="" width="174" height="8"></td>
        <td><img src="images/orangeline.gif" alt="" width="596" height="8"></td>
      </tr>
      <tr>
        <td id="menu"><img src="images/bullet.gif" alt="" width="10" height="10"> <a href="index.html">Start</a><br> 
          <img src="images/bullet.gif" alt="" width="10" height="10"> <a href="how_we_work.html">How we work</a><br>
          <img src="images/bullet.gif" alt="" width="10" height="10"> <a href="our_services.html">Our services</a><br>    
           <img src="images/bullet.gif" alt="" width="10" height="10"> <a href="references.html"> References </a><br>    
           <img src="images/bullet.gif" alt="" width="10" height="10"> <a href="need_help.html"> Need help</a><br> 
           <img src="images/bullet.gif" alt="" width="10" height="10"> <a href="about_us.html">About us</a><br>
        <img src="images/bullet.gif" alt="" width="10" height="10"> <a href="contact_us.html">Contact us</a><br></td>
        <td id="maincontent-subpages"><H1>Lorem ipsum dolor sit amet</H1>
          <P>Hello</P>
          <P>BR>
      <BR>
      Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat.</P>          </td>
        </tr>
      <tr>
        <td><img src="images/greyline.gif" alt="" width="174" height="8"></td>
        <td><img src="images/orangeline.gif" alt="" width="596" height="8"></td>
      </tr>
      <tr>
        <td id="footer" colspan="2"></td>
      </tr>
    </table>
    </body>
    </html>
    Code (markup):
     
    chrisj, Jun 27, 2007 IP
  2. VimF

    VimF Well-Known Member

    Messages:
    307
    Likes Received:
    27
    Best Answers:
    0
    Trophy Points:
    118
    #2
    
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
    <head>
    <title></title>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
    <link href="custom.css" rel="stylesheet" type="text/css" />
    </head>
    <body>
    <table width="770" border="0" cellpadding="0" cellspacing="0" id="maintable">
      <tr>
        <td colspan="2" id="topline">&nbsp;</td>
      </tr>
      <tr>
        <td id="logocell"><img src="images/logo.gif" alt="" width="174" height="134" /></td>
        <td><img src="images/topimg1.jpg" alt="" width="309" height="134" /><img src="images/topimg2.jpg" alt="" width="287" height="134" /></td>
      </tr>
      <tr>
        <td><img src="images/greyline.gif" alt="" width="174" height="8" /></td>
        <td><img src="images/orangeline.gif" alt="" width="596" height="8" /></td>
      </tr>
      <tr>
        <td id="menu"><img src="images/bullet.gif" alt="" width="10" height="10" /> <a href="index.html">Start</a><br /> 
          <img src="images/bullet.gif" alt="" width="10" height="10" /> <a href="how_we_work.html">How we work</a><br />
          <img src="images/bullet.gif" alt="" width="10" height="10" /> <a href="our_services.html">Our services</a><br />    
           <img src="images/bullet.gif" alt="" width="10" height="10" /> <a href="references.html"> References </a><br />    
           <img src="images/bullet.gif" alt="" width="10" height="10" /> <a href="need_help.html"> Need help</a><br /> 
           <img src="images/bullet.gif" alt="" width="10" height="10" /> <a href="about_us.html">About us</a><br />
        <img src="images/bullet.gif" alt="" width="10" height="10" /> <a href="contact_us.html">Contact us</a><br /></td>
        <td id="maincontent-subpages"><h1>Lorem ipsum dolor sit amet</h1>
          <p>Hello</p>
          <p><br />
      <br />
      Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat.</p>          </td>
        </tr>
      <tr>
        <td><img src="images/greyline.gif" alt="" width="174" height="8" /></td>
        <td><img src="images/orangeline.gif" alt="" width="596" height="8" /></td>
      </tr>
      <tr>
        <td id="footer" colspan="2"></td>
      </tr>
    </table>
    </body>
    </html>
    Code (markup):
     
    VimF, Jun 27, 2007 IP