how to put an image as background code example
Example 1: How to set a image as a backgroung image
<style>
body {
background-image: url('img_girl.jpg');
background-repeat: no-repeat;
background-attachment: fixed;
background-size: cover;
}
</style>
Example 2: inserting a image in html backgound
<html>
<style>
body
{
background-color: url('url from web');
}
</style>
<body>
<!-- Your body displayed with the picture-->
<h1></h1>
</body>
</html>
Example 3: adding background image
body{background-image: url("paper.gif");}