Posted by Leif K-Brooks on 10/22/28 11:29
Travis Newbury wrote:
> Luc wrote:
>
>>How can you make it so that the text on your website cannot be copied?
>
>
> Use the (undocumented) <text-encrypt/> tag. I forget the parameters
> for it, but you can google it to find out.
That's been deprecated since HTML 4.0 was released! Use CSS instead:
html {
text-encryption: rot26;
}
[Back to original message]
|