1: that orange background is annoying. You can keep the orange behind your header, but for the main background I would suggest white, black, or some color that contrasts well with the orange.
2: on the pc repair page the third column of your tables extends further than the background behind it.
3: there is a lot of unnecessary code for someone using a style sheet. For instance this section:
Code:
<H2>Isyourpcbroken.bravehost.com</H2>
& nbsp;</P>
<FONT size=5> <CENTER>
Welcome to is you pc broken.We bring you some very handy FREE software,Guides
and games for your pc and also a forum so people can answer your questions!
</CENTER>
<CENTER>& nbsp;</CENTER>
<CENTER>To Visit our forums,Click here</CENTER></FONT>
</P>
Could be slimmed down to this:
Code:
<h2>Isyourpcbroken.bravehost.com</h2>
<p class=”big”>
Welcome to is your pc broken. We bring you some very handy FREE software, guides,
and games for your pc as well as a forum so people can answer your questions!
</p>
<p class=”big”>
To visit our forums, <a href=http://www.easyfreeforum.com/isyourpcbroken/>Click here</a>
</p>
with this added to your style sheet
Code:
.big {font-size: 1.5em; text-align: center;}
you might have to mess around with the size a little (1.5em is slightly smaller than font size=5)