0
Can u tell me how to add image in background in html?
4 Risposte
0
For me the easiest way is to use css background-image.
.yourSelector{
background-image: url("path/your.jpg)" }
0
I haven't learner css yet
0
You can just append: <style> body {background-color:green;}</style>
to the <head> of your html document.
https://www.w3schools.com/html/html_css.asp
(Second example)