MINI HTML TUTORIALS
FIXED BACKGROUND IMAGE
Add this in the <body> section of your html:
<style type="text/css">
body
{
background-image:
url('yourbackgroundimageURLgoeshere');
background-repeat:
no-repeat;
background-attachment:
fixed
}
</style>
★☆BACK☆★