make container div
<div id="container">
</div>
and use the following css
#container{width:750px; margin:0 auto}
css sets the width using "width" and writes "margin" as it centers the div in the browser window. those. top, bottom, right. This means that the edge at the top and bottom of the page is β0β and the right and left are βautoβ.
source
share