0

In this post we will teach you. (How to Disable Copy and Paste in Html) .Copy the code below. Then check out our blog through the online HTML editor. Then use the code in your website. If there is a problem with the code, ask your question in the comment box below.

<!--DOCTYPE html--> <html> <head> <title>Title of the document</title> <style> .unselectable { -webkit-user-select: none; -webkit-touch-callout: none; -moz-user-select: none; -ms-user-select: none; user-select: none; color: #cc0000; } </style> </head> <body> <p>you can copy this text</p> <div class="unselectable">you cant copy this text</div> </body> </html>

Post a Comment

 
Top