
Solution
Create a container to store your image. In this case I use a <div>.
Create your <div> inside your <body>, just like this.
<body> <div class="flower"></div> </body>
Next, create a <style> if you dont have one. Make sure they are between your <head> </head>. Put the following css inside.
<style>
body {background-color:#000}
div.flower {background:url(flower-transparent.png) no-repeat; height:100px; width:100px}
</style>
The ...
Read More
1 Comments