body
{
background-image:
url("../images/bgdesert.jpg")
}
other items you might want to mix in there are:
background-repeat:
no-repeat;
background-position:
center center
background-attachment:
fixed
to simplify this you can use:
body
{
background: #000
url("../images/smiley.gif")
no-repeat fixed
center center
}
but it will have less browser compatibility most likely.
^_^