Posts

Showing posts with the label background image in css

Css source code for how to set the background image

Css source code for how to set the background image   <html>    <head>       <style>          body {             background-image: url("/css/images/css.png");             background-color: #cccccc;          }       </style>    </head>        <body>       <h1>Hello World!</h1>    </body> <html>

css code for background image

 css code for background image body {  background-image: url("tech.thinkforu.png");  background-color: #cccccc; }