html insert background image 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: html background image
<head>
<style>
body {
background-image: url(https://wallup.net/wp-content/uploads/2019/09/110394-cats-grey-kittens-fluffy-fat-grass-animals-cat-kitten-baby-cute-748x468.jpg)
}
</style>
<body>
You have set the background image!
</body>
Example 3: how to add a background image in html
<div id="imageDiv"></div>
<style>
#imageDiv {
background-image: url('someimage.png');
}
</style>
Example 4: adding background image
body{background-image: url("paper.gif");}