For centring the page, add this to your stylesheet:
Code:
body {
margin: 0 auto;
}
Often that is not flexible enough. For more control, wrap a <div> around the stuff you want centred, and apply the style to it instead.
Don't have a stylesheet? You'll need to learn about them soon
**EDIT**
I see that you have already tried this, and it didn't work. Want to know
why it didn't work? It's because you have no doctype.
You need to fix your site's many errors. To start with, put a correct doctype at the top of the page. This goes before anything else, even the <
html> element:
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
Without this, the method I gave you for centring
won't work properly. That's an example of why cleaning up your code is important.