Well, since you're starting out with XHTML:
This is NOT proper use of a Heading:
Quote:
<h1 align="right"><span class="oneColFixCtr style11 style18"><span class="oneColFixCtr style23"> Live Support | Helpdesk | About Us<br />
<span class="style11">Call Us! 1 (800) Web Tech</span></span></span></h1>
|
A heading should be just that, a HEADING, and it should be relevant to the content on your page. What you've actually got there is an unordered list, a menu, and it should be structured as such.
If you're going to go with XHTML, then the align="center" is not allowed, that kind of STYLING belongs in the CSS.
On your dropdown menu, again, use an unordered list, it is more semantically correct and eliminates divs you don't need. Put the UL inside a div, much cleaner.
Ok THIS should be your H1!
[quote]
<div id="bg"><span class="style1">Get Cloud Hosting Today!<p>[/ quote]
No reason at all to use a span on a <p> to create a heading, use the right tag for the job. SE spiders DO pay attention to heading tags and their hierarchy, and they work like any document outline.
All of this - not necessary:
Quote:
|
<h1 align="justify" class="style24">
|
The styling should be applied to the tag IN the css. There should also be only ONE h1 heading to a page.
The design is nice and clean
