anturj,
Your site looks fine.
If you are happy with a site that looks fine but has many validation errors, then you can ignore this post. If what you see is all that matters, then this post is useless. If you prefer to understand more about your code, you can follow these steps to reduce the number of validation errors from around 40 to 5.
Best wishes, whatever you choose.
INSTRUCTIONS
To stop more than half of the validation errors, change your <!DOCTYPE> from strict to transitional:
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
Line 5, change the <meta> tag to:
Code:
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
Line 4, DELETE line 4.
Above line 9 (before the </head> tag), insert the following tag:
Code:
<title>Akotro Community</title>
Line 10, MOVE the </head> tag down the page so it is just above the <body> tag.
Line 65, this <div id="login"> does not seem to be serving a purpose. This div and it's close tag on Line 75 can be deleted. This will also eliminate one of the validation errors caused by duplicate id's.
I do not know if duplicate id's affect the form or not, but you have 2 duplicate ids in the form elements. I am not familiar with forms and cannot help you fix them.
Line 123, needs a proper post-HTML4 close tag: " />" (add the space-slash)
Line 133, "bordercolor" is a deprecated attribute... and it is set to "0" already.
So change line 133
Code:
from this:
<table border='0' align='left' cellspacing='10' bordercolor='CCFF99'>
to this:
<table border='0' align='left' cellspacing='10'>
Line 223, "bordercolor" is a deprecated attribute. It should be applied in css.
So delete the bordercolor attribute from the <table> tag (just like you did above),
and add it to the css by adding the following style above the #profile styles (around line 115):
Code:
#visit table {border-color:#090;}
Bookmarks