use photoin backgrund html code example
Example 1: inserting a image in html backgound
<html>
<style>
body
{
background-color: url('url from web'); /* replace "url from the web" with your url*/
}
</style>
<body>
<!-- Your body displayed with the picture-->
<h1></h1>
</body>
</html>
Example 2: how to set background image for web page in html local image
body { background-image: url(/path/to/image.png); }
Example 3: adding background image
body{background-image: url("paper.gif");}