I'll try to be kind and helpful, even if it kills me.
You've got to remove the spam from the bottom of the page. One well written paragraph might be understandable.
Judging by the HTML source code, it would appear that you're using software to write your page and that you're not too experienced at hand coding. You need to work on that.
You might want to mplement an external CSS style sheet and get rid of the code bloat.
For example, placing this in the head of your document will automatically apply your specified font across the entire page:
Code:
<style>
body {font-size:2; font-family:tahoma, helvetica, sans-serif; font-color:#999999;}
</style>
With that done, you can remove a few thousand lines of redundant code:
<font size="2" face="Tahoma" color="#999999">this is your text</font>
Start with the extraneous (and duplicate) meta tags.
Code:
<meta name="resource-type" content="document">
<meta name="generator" content="AnyBrowser.com MetaMaker">
<meta http-equiv="pragma" content="no-cache">
<meta name="revisit-after" content="1 days">
<meta name="classification" content="Construction">
<meta name="robots" content="ALL">
<meta name="distribution" content="Global">
<meta name="rating" content="Safe For Kids">
<meta name="copyright" content="robuild.co.uk">
<meta name="author" content="robuild.co.uk">
<meta http-equiv="reply-to" content="info@robuild.co.uk">
<meta name="language" content="english">
<meta name="doc-type" content="Web Page">
<meta name="doc-class" content="Published">
<meta name="doc-rights" content="Public">
<meta name="author" content="Builders London Robuild.co.uk">
<meta name="description" content="Builders London, decorators,plumbers, painters,electricians">
<meta name="classification" content="Construction Builders Plumbers">
Put any embedded JavaScript into an external file.
Remove and and all duplicate <html>. <head> and <body> tags.
Delete the huge areas of blank white space so you can edit the page without scrolling through code for hours at a time.
This is indicative of sloppy web page software that's inserting bad code. Improve your text to code ratio, and thereby increase your page relevance by cleaning these up.
Code:
<DIV align=justify><font face="Tahoma"></font></DIV>
That should keep you busy for a few days.