Sitemin tüm hatalarını w3'e göre düzelttim, yalnız tek bir hata kaldı.
Diyor ki kırmızı yazılı olan bölüm hatalı. Bir tagdan sonra açtığım bir tagı kapatırken hata yapmışım; tam açıklayamadım ama w3'teki açıklaması:
Diyor ki kırmızı yazılı olan bölüm hatalı. Bir tagdan sonra açtığım bir tagı kapatırken hata yapmışım; tam açıklayamadım ama w3'teki açıklaması:
</ul>
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.
PHP:
<li>
<h2 class="sidebartitle">Arşivler</h2>
<ul class="list-archives">
<li><a href='http://www.xxxxx.com/2008/02/' title='Şubat 2008'>Şubat 2008</a></li>
<li><a href='http://www.xxxxx.com/2008/01/' title='Ocak 2008'>Ocak 2008</a></li>
</ul>
</li>
<li>
<h2 class="sidebartitle">Bağlantılar</h2>
<ul class="list-blogroll">
</ul> (*/ Hatalı olan satır )
</li>