+ 3
How to insert a background image (URL) in css for html file???
2 Respostas
+ 6
https://code.sololearn.com/W2XgAxZRT62w/?ref=app
Just an example
+ 3
You can do that by putting the property in body of the css this way:
body {
background-image: url("imagePath.extension");
background-color: #cccccc;
}