Notes Field - read only

How do I make my Notes Field ready only please, Internal name 'Note1'

Dear @changa3065,
Do you need to make it dynamic or not? If not, you can just set field as read-only in the editor:

Nikita, I do not have that option

Dear @changa3065,
Is it public web forms? If so, you can just use Text control instead - Text control — Plumsail Web Forms Documentation

Or if you want the field, but keep it disabled, use the following code in JavaScript editor:

fd.rendered(() => {
    fd.field('Note1').disabled = true;
});