how to make background image cover whole page html code example
Example 1: how to cover whole webpage by background image in html
background: url(images/bg.jpg) no-repeat center center fixed;
background-size: cover;
Example 2: how to cover full background with css
<div id="bg">
<img src="images/bg.jpg" alt="">
</div>