Ok, lets try:
1 - Wrap your in-line scripts inside CDATA and most of those errors generated by the scripting should go away.
Like this:
<script type="text/javascript">
// <![CDATA[
*** your scripting in here ****
// ]]>
</script>
2 - There is no such property as valign="center" - suggest you learn the correct properties : http://www.w3schools.com/tags/tag_td.asp
Valid attributes are top, middle, bottom and baseline
3 - Proper attributes for "align" are left, right, center and justify - no middle
4 - img tags MUST have an alt=" xxx" attibute, even if you leave it blank alt="" (which you shouldn't do unless it's a fluff image)
5 - tr background = xxx .. presentational elements should go in CSS, but this is merely a warning, not a show-stopping error.
6 - <script> tags should include the type, ie: type="text/javascript"
7 - meta tags :
Quote:
|
<META content=INDEX,FOLLOW name=YahooSeekers >
|
Everything after the = must be in quotes: <meta content="index, follow" name="yahooseekers">
A LOT of the errors that follow the <metas> are caused by your improper meta tags. Fix those and the above and you'll narrow down 90% of your errors.
__________________
Web Goddess & Web Standards Evangelist :) - Tables Be Gone !!
Please login or register to view this content. Registration is FREE
Please login or register to view this content. Registration is FREE
|