Auto-resizing the page width to be say 100% of the browser window is easy. The simpliest way of doing it is to use this code:
Code:
<style type="text/css">
body {
width:100%;
}
</style>
However, you would be better to use an external CSS stylesheet. If you visit
W3Schools.com's CSS section, you should find a bunch of easy to learn CSS tutorials that can help you.
