+ 1
How can i put a full screen background image with html
6 Answers
+ 7
Please Check this..
https://www.w3schools.com/howto/howto_css_full_page.asp
HOPE THIS IS HELPFUL FOR YOU. THANKS đđââđđ
+ 5
To customize your HTML you'll have to use CSS.
+ 5
Yes it is, CSS basics are easy to learn, don't be afraid and try it !
+ 4
html { background-image: url(image.jpg); no-repeat center center fixed;
-webkit-background-size:cover;
-moz-background-size:cover;
-o-background-size: cover;
background-size: cover; }
+ 1
Is that the only way?
+ 1
K, thank u