Hi there, are you the designer or the developer? or both?
Design wise, the colours are great but all the graphic elements are chopped off somehow.
Development wise, lets start with < p > for Paragraph and < ul > for Unordered List, so maybe you would like to change this:
HTML Code:
<p>
SEO - Search Engine Optimisation
<a href="seo1.html">
<br/>
</a>
CSS - Cascading Style Sheets
<br/>
</p>
<p>
Long term success
<br/>
Online advertising
<br/>
Online marketing
<br/>
Website hosting
<br/>
Tracking your websites progress
</p>
<p> </p>
to something like this:
HTML Code:
<ul>
<li><a href="seo1.html" title="SEO - Search Engine Optimisation">SEO - Search Engine Optimisation</a></li>
<li>CSS - Cascading Style Sheets</li>
<li>Long term success</li>
<li>Online advertising</li>
<li>Online marketing</li>
<li>Website hosting</li>
<li>Tracking your websites progress</li>
</ul>
~Peace~