If you want the entire page to have a background image, you must specify the background image on the <body> element:
Example
Add a background image for the entire page:
<style>
body {
background-image: url('img_girl.jpg');
}
</style>
Live Demo & Try it yourself!
Output