To make the background of an HTML page just repeat horizontally across the top of the page, put this in your head tag:
<STYLE>
body { background: white url(http://www.yourserver.com/images/yourimage.gif) repeat-x }
</STYLE>
To make the background of an HTML page just repeat vertically along the side of your page, put this in your head tag:
<STYLE>
body { background: white url(http://www.yourserver.com/images/yourimage.gif) repeat-y }
</STYLE>
Comment on this tutorial