How to Create a Watermark on a Web Page?

1 replies
Hello Friends.........

watermarks are easy to create using three CSS style properties:

You use background-image to define the image to use as your watermark, background-repeat to make it display only once, and background-attachment to turn it into a watermark.
Add the following to the HEAD of your Web page. Change the URL to your background image, and you'll have a watermark:
<style>
<!--
body {
background-image: url(image.gif);
background-repeat: no-repeat;
background-attachment: fixed;
}
//-->
</style>

Thanks
#create #page #watermark #web

Trending Topics