how to make a picture in the background html code example
Example 1: how to make a still background image in html
<body style="background-image: url(your image url here);
background-repeat: no-repeat;
background-attachment: fixed;">
Example 2: how to add a background image in html
<!-- HTML -->
<div id="imageDiv"></div>
<!-- CSS -->
<style>
#imageDiv {
background-image: url('someimage.png');
}
</style>