If you are looking for simple HTML to disable COPY and PASTE on a specific element then use below code. You can even block on the whole page by putting it on the body tag.
oncontextmenu="return false" onkeydown="if ((arguments[0] ||
window.event).ctrlKey) return false"