Search code examples
validationxhtmlxhtml-transitional

XHTML Markup Problems


my template includes following:

      <h1 style="height: 80px;" /><img border="0" src="/somemoduledirectoryhere/Headline.ashx?c=sometexthere&amp;fc=" alt="anothertexthere" /></h1>
   <h2 style="margin-top: 20px;margin-left: 5px;">someheadlinehere</h2>

I receive following errors during XHTML 1.0 transitional markup.

document type does not allow element "h2" here; missing one of "object", "applet", "map", "iframe", "button", "ins", "del" start-tag

end tag for element "h1" which is not open

Would you please suggest me how to fix these two problems?

Thank you.


Solution

  • You're self closing the H1 tag

    Remove the forward slash in:

    <h1 style="height: 80px;" />
    

    so its

    <h1 style="height: 80px;">