
How is picture displayed in background in a HTML?

Hi,
Here is the answer,
This allows you to set a picture as the background of your web page. Doing this can really make your site look creative and greatly improve the overall look.
The tag for the background picture looks like BACKGROUND=. This is added onto the body tag so the end result looks like
<body background="drk.gif"> ......</body>
A fixed background allows you to scroll with the text, but the background stays in the same place. To do this, insert the tag BGPROPERTIES="fixed" which adds onto your body tag so the final result looks like
<body background="drk.gif" bgproperties="fixed"> . . . </body>
Thanks.