sorry to ask this again but been try to my code vaild xhtml but get one error and i can not find it.
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.O Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>Marine Fish</title>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
<link rel="stylesheet" type="text/css" href="style.css" />
</head>
<body>
<div class="container">
<div class="logo"><img src="images/logo.jpg" height="90" width="100%" alt="logo" /></div>
<div class="header">
<ul>
<li><a class="menu" href="#">Home</a></li>
<li><a class="menu" href="#">News</a></li>
<li><a class="menu" href="#">Marine Life</a></li>
<li><a class="menu" href="#">Gallery</a></li>
<li><a class="menu" href="#">Contact Us</a></li>
<li><a class="menu" href="#">Links</a></li>
</ul>
</div>
<div class="left"><h3 class="red">Latest News</h3>
<p class="newsborder">New Site will be added lots more soon.</p>
<p class="newsborder">Will be adding images of my tank soon.</p>
<p class="newsborder">Please vist a very good forum at <a class="news" href="http://www.marinefishuk.co.uk">www.marinefishuk.co.uk</a></p>
</div>
<div class="content">
<h2 class="header">Photo Of The Month</h2>
<p>We will display a photo here that we think is worth our photo of the month. Your image does not have to be the most beautiful tank but something that stands out.</p>
<p class="small"><img src="images/crabsmall.jpg" alt="crabs fighting" /><br />Crabs Fighting</p>
<p>If you think you have a photo of the month please send it to us by email.</p>
</div>
<div class="footer">Copyright 2006 by Marine Fish Designed by Robert Nelson.</div>
</div>
</body>
</html>
I just tried to validate it and it gives me a few errors, your doctype is incorrect to start with I believe, not sure about the other errors, just look at them now for you.
Apologies, I read it wrong, your doctype is fine, I had a play around and the following code validates, hope this helps...
Code:
<!DOCTYPE html
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>Marine Fish</title>
<link rel="stylesheet" type="text/css" href="style.css" />
</head>
<body>
<div class="container">
<div class="logo"><img src="images/logo.jpg" height="90" width="100%" alt="logo" /></div>
<div class="header">
<ul>
<li><a class="menu" href="#">Home</a></li>
<li><a class="menu" href="#">News</a></li>
<li><a class="menu" href="#">Marine Life</a></li>
<li><a class="menu" href="#">Gallery</a></li>
<li><a class="menu" href="#">Contact Us</a></li>
<li><a class="menu" href="#">Links</a></li>
</ul>
</div>
<div class="left"><h3 class="red">Latest News</h3>
<p class="newsborder">New Site will be added lots more soon.</p>
<p class="newsborder">Will be adding images of my tank soon.</p>
<p class="newsborder">Please vist a very good forum at <a class="news" href="<A href="http://www.marinefishuk.co.uk">www.marinefishuk.co.uk</a></p">http://www.marinefishuk.co.uk">www.marinefishuk.co.uk</a></p>
</div>
<div class="content">
<h2 class="header">Photo Of The Month</h2>
<p>We will display a photo here that we think is worth our photo of the month. Your image does not have to be the most beautiful tank but something that stands out.</p>
<p class="small"><img src="images/crabsmall.jpg" alt="crabs fighting" /><br />Crabs Fighting</p>
<p>If you think you have a photo of the month please send it to us by email.</p>
</div>
<div class="footer">Copyright 2006 by Marine Fish Designed by Robert Nelson.</div>
</div>
</body>
</html>
yeah thats it but i only found one thing that was wrong and find the others what did you change just so i no for next time. been over the code 100 times but keep missing it.