html watermark code example
Example 1: html watermark background
#watermark {
position:fixed;
bottom:5px;
right:5px;
opacity:0.5;
z-index:99;
color:white;
user-select: none;
}
Example 2: watermark in html5
<html>
<body onload="addWaterMarkOnPage();">
<div id="pageContainer" style="width: 612px; height: 792px;">
<canvas id="page1" width="612" height="792"></canvas> //image loading canvas
</canvas>
</div>
</body>
<html>