+ 2
How can I use a logo as the background of my web page?
how can I use my logo as my webpage background?
4 Answers
+ 11
Set background-image property for your page using CSS and specify the URL of your logo.
html {
background-image: url("mylogo.png");
}
Are you sure you want to use a logo as the background though.
+ 2
can be used with other tags also...
0
that should be done in the <html> tag right?
0
thanks