• 25-03-2008, 19:19:08
    #1
    Kimlik doğrulama veya yönetimden onay bekliyor.
    Validation Output: 2 Errors

    1. Line 1, Column 123: Missing xmlns attribute for element html. The value should be: http://www.w3.org/1999/xhtml.…html1/DTD/xhtml1-transitional.dtd"> <html dir="ltr" lang="tr"> <head> <meta
      Many Document Types based on XML need a mandatory xmlns="" on the root element. For example, the root element for XHTML will look like:
      <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
    2. Line 281, Column 3660: end tag for "thead" which is not finished.…100%" align="center"> <thead> </thead> <!-- google_ad_section_start --><tbody
      Most likely, you nested tags and closed them in the wrong order. For example <p><em>...</p> is not acceptable, as <em> must be closed before <p>. Acceptable nesting is: <p><em>...</em></p>
      Another possibility is that you used an element which requires a child element that you did not include. Hence the parent element is "not finished", not complete. For instance, in HTML the <head> element must contain a <title> child element, lists (ul, ol, dl) require list items (li, or dt, dd), and so on.
    Ne Demek İstiyor Bir Yol Gösterin Arkadaslar Nereden Düzelteceğim
  • 25-03-2008, 20:57:22
    #2
    Kimlik doğrulama veya yönetimden onay bekliyor.
    1-)
    Alıntı
    <html dir="ltr" lang="tr">
    olan yeri ;

    <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="tr" lang="tr">

    olarak değiştiriniz..

    diğerini bende çözemedim.
  • 31-03-2008, 09:26:49
    #3
    Kimlik doğrulama veya yönetimden onay bekliyor.
    2. hatada tag kapamasını yanlış yapmış olabilirsin diyor. Doğru kapatma şöyle <p><em>...</em><p>