Hello obuwebco,
Well, I'm impressed. Here,
finally is a piece of shockwave which makes sense
... as an art element, not as the purpose for the whole page! Congratulations!
I did my usual thing, and went right to the source code. On first glance, the header looks to be well formatted. The DOCTYPE is complete (so many these days are messed up). The selected Meta tags are in general good, but there are some clean-ups required.
You are really using HTML4 formatting, not XHTML. To meet XHTML, do not close your Meta tags with > but with (space)/>. So, your robots tag, for example, would change from content="ALL"> to content="ALL" /> -- do this for all of them.
You need significant changes to two tags. The description needs to be cut
literally to half of its current length. Search engines will tend to disqualify it based on length alone.
The same applies to the keyword list. Seriously, cut it in half! Also, reduce the number of times you repeat words to a half dozen or less. You repeat marketing 31 times, business 30 times, management 11, customer 10, small 9 and relationship 9 times. Wow! Repeat in the <body> text, not in the keyword list itself. Do all of your keywords appear within the first few thousand characters of <body> text? They need to be there.
In the <body>, your tables need summaries.
Change --
Quote:
|
<table width="800" border="0" cellspacing="0" cellpadding="0">
|
To --
Quote:
|
<table summary="what the table's about" width="800" border="0" cellspacing="0" cellpadding="0">
|
Similarly, your images need "alt" attributes.
In XHTML, tables don't have backgrounds; you achieve that in CSS.
And, "embed" is not a W3C-approved item. Does Shockwave allow you another way to say this which will meet the standard?
So, while there are 36 XHTML errors on your Home page, they are all repeats of this same small handful of items. Easy fixes!
Even though you need a minimum of an 800-pixel screen to see this Home page, I do like it. It loads quickly and has an over-all clean appearance. I agree with the others about the type size, however.
Good luck with your site.
Hal