<!DOCTYPE html>
<html>
<head>
<style>
.selectnone {
-moz-user-select: none; /* Firefox */
-ms-user-select: none; /* Internet Explorer and Edge */
-webkit-user-select: none; /* Safari */
user-select: none; /* Chrome and Opera */
}
</style>
</head>
<body>
<p class="selectnone">
text text text
</p>
</body>
</html>