Nie chce zakładac nowego temaatu wiec pisze w tym.
W validatorze wyskakuje mi tylko takie cos:
Cytat
Error Line 31 column 6: end tag for "head" which is not finished.
</head>
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, <head> generally requires a <title>, lists (ul, ol, dl) require list items (li, or dt, dd), and so on.
A to mam przed head (i samo head)
<!DOCTYPE html
PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="pl" lang="pl"> body {margin: 0px; background-image: url("./images/bg.gif"); margin:0; padding:0; height:100%; text-align:center; color: #fff;}
img {border: 0px; margin: 0px; padding: 0px;}
#glowny {margin: 0 auto; width: 804px; text-align: justify;}
#text-bar {width: 100%; height: 18px; background-image: url("./images/top-text-bar.jpg"); font-size: 12px; text-align: left; vertical-align: center;}
#text-bar h1 {font-size: 12px; margin:0px 10px 0px 10px; font-weight: bold; font-family: Verdana; color: #000;}
#logo{width: 100%; height: 150px; background-image: url("./images/logo.jpg"); font-size: 0px;}
#top-menu{width: 100%; height: 52px;}
#top-menu-items{width: 100%; height: 40px; padding: 0px; margin: 0px;}
#body {float: right; background-image: url("./images/body-bg.jpg");}
#menu {width: 162px; left: 0px; float: left;}
#other {width: 642px; right: 0px; float: right;}
#footer-text {width: 100%; height:40px; background-image: url("./images/footer.jpg"); float: right;}
#nav {width: 100%; background-image: url("./images/nawigacja.gif"); background-repeat: no-repeat; padding: 30px 20px 0px 20px;}
#nav a {color: #aaa; text-decoration: none; font-size:13px; font-family: arial;}
#nav a:hover {color: #eee; text-decoration: underline; font-size:13px; font-family: arial;}
.metaldream {width: 100%; padding: 30px 20px 0px 20px;}
.metaldream a {color: #aaa; text-decoration: none; font-size:13px; font-family: arial;}
.metaldream a:hover {color: #eee; text-decoration: underline; font-size:13px; font-family: arial;}
.header-bar{width: 100%; height:12px; background-image: url("./images/header-bar.jpg"); font-size: 0px;}
.bar {width: 100%; height:12px; background-image: url("./images/bar.jpg"); font-size: 0px;}
Wszystkie tagi (chyba) mam pozamykane wiec o co chodzi

:|