0
New to HTML. How to make a background picture?
Hi everyone, Can anyone please tell me how do i make a background picture ?
2 Réponses
+ 11
in css:
body {
background-image:"link to image"
}
+ 8
You should use CSS. I think the only way to do that in HTML is inline CSS. Like this:
<body style="background-image:url("your image url .jpg");
https://code.sololearn.com/WgguzM3P5Dsf/?ref=app