I want to \"centerize\" the text and contents of my webpage. Now I don\'t want to align the text to center, I still want a left alignment but I want significant margins on t
Have a container div within which you put all your content:
a sample this is it all content goes here
all content goes here
Then add some css specifying the width and margins of your container div:
#container { width: 750px; margin: 0 auto; }