how to prevent selection in html code example
Example 1: how to disable image dragging in html
use ondragstart="return false" for dragging and onselectstart="return false" for selecting
Example 2: how to hide code in html
<!DOCTYPE html>
<html>
<body>
<!-- This is a comment -->
<p>This is a paragraph.</p>
<!-- Comments are not displayed in the browser -->
</body>
</html>