Disable right click, copy, cut and paste in HTML.
     Disable/Prevent to  Right Click on your site.==>  You can do that with JavaScript by adding an event listener for the "contextmenu" event and calling the  preventDefault()  method:  document . addEventListener ( 'contextmenu' ,  event  =>  event . preventDefault ());        Disable/Prevent to  copy , cut and paste the text/ content from your site.==>   You cannot prevent people from copying text from your page. If you are trying to satisfy a "requirement" this may work for you:  <body  oncopy = " return  false "  oncut = " return  false "  onpaste = " return  false " >    
