background image css example
Example 1: background image css
.selector {
background-image: url(image.png);
}
Example 2: background image css
html,body {
background-image: url("your.picture");
}
.selector {
background-image: url(image.png);
}
html,body {
background-image: url("your.picture");
}