html field not editable code example
Example 1: html input not editable
<input readonly type="text" name="country" value="Norway" >
Example 2: read only html
<!-- Using readonly attribute is use to prevent changing of input value. -->
Example:
<input type="text" name="username" value="lol" readonly>