HTML/CSS/Basic Attributes/unselectable
"unselectable" specifies whether or not an element can be selected
<HTML>
<head>
</head>
<BODY>
<p unselectable="on">
selectable text.
</p>
<p unselectable="off">
unselected text
</p>
</BODY>
</HTML>