Not even a page title?
WTF. You need to begin by learning HTML!
Then PHP. Then SEO IMHO. Really this site is.... well awful IMHO.
An SEO nightmare!
And worse still is this.
<meta name="generator" content="WYSIWYG Web Builder -
http://www.wysiwygwebbuilder.com">
Really mate.
Learn some HTML. Here is a great place.
http://www.w3schools.com/html/default.asp
Learn some PHP. Hers is the place to go.
http://www.w3schools.com/php/default.asp
Seriously read and learn from there. Its a good place to start mate. Most if not all of us at some time have gone there.
And learn basic meta tags. I know they dont mean much. But a title means loads!
Here is sort of how i would start a web page.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>
YOUR TITLE</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="Description" content="
YOUR DESCRIPTION" />
<meta name="Keywords" content="
YOUR KEYWORDS" />
<meta name="RESOURCE-TYPE" content="document" />
<meta http-equiv="Expires" content="0" />
<meta name="author" content="
YOUR NAME PERHAPS?" />
<meta name="COPYRIGHT" content="Copyright ©
YOUR SITE" />
<meta name="REVISIT-AFTER" content="10 days" />
<meta name="DISTRIBUTION" content="Global" />
<meta name="RATING" content="General" />
<meta name="Robots" content="index,follow" />
</head>
<body>
CONTENT HERE
</body>
</html>
Sure need to add sylesheet crap. But thats a good base atleast?
Changing the red bits ofcourse.