If you want to prohibit copying content from your website you can update the BODY tag with the following properties:
<html> <head> ... </head> <body ondragstart="return false" onselectstart="return false"> ... </body> </html>
Doesn't work for FireFox.
