unless the person goes into the source code and scrolls down you can use this. I use this on some of my pages. I will most likely never remove that transparent 1px image but if I do you should save it to your own server. This pretty much just covers the entire page with a transparent image so if they try to save or copy the image they get the transparent one.
Code:
<html>
<head>
<meta http-equiv="imagetoolbar" content="no" />
</head>
<body style="margin: 0px; padding: 0px;">
<div style=" position: absolute; width: 100%; height: 100%; left: 0px; top: 0px;z-index: 0;">
TYPE ALL OF YOUR BODY CONTENT HERE<br>
Use this for all of your images
<a href="name_of_page.html"><img src="picture_url.jpg"></a>
and give the destination url as the same page that way it keeps reloading
</div>
<div style="position: absolute; width: 100%; height: 100%; left: 0px; top: 0px; z-index: 1;">
<img src="transparent.gif" style="width: 100%; height: 100%;">
</div>
</body>
</html>
Bookmarks