Log in

View Full Version : Back Ground Pic


Faithpal28
Jan 7, 2008, 03:24 PM
I am trying to create a background on my web page. Every background formula that I try is not working.
How can I change the background

vingogly
Jan 15, 2008, 07:13 PM
Here's how you do it in HTML:

<body background="image.gif">

Using CSS is recommended instead of this outmoded HTML approach. Here's how you'd do it in CSS:

<style type="text/css">
body
{
background-image:
url('image.gif')
}
</style>

In both cases replace image.gif with the path to your image.